Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a498eea0bc | |||
| c172009799 | |||
| 8ff473839c |
@@ -1,6 +1,6 @@
|
|||||||
.{
|
.{
|
||||||
.name = .pugz,
|
.name = .pugz,
|
||||||
.version = "0.0.0",
|
.version = "0.1.2",
|
||||||
.fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications.
|
.fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications.
|
||||||
.minimum_zig_version = "0.15.2",
|
.minimum_zig_version = "0.15.2",
|
||||||
.dependencies = .{
|
.dependencies = .{
|
||||||
|
|||||||
@@ -765,8 +765,11 @@ pub const Runtime = struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If still not found, skip this mixin call
|
// If still not found, log warning and skip this mixin call
|
||||||
const mixin_def = mixin orelse return;
|
const mixin_def = mixin orelse {
|
||||||
|
std.log.warn("mixin '{s}' not found, skipping", .{call.name});
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
try self.context.pushScope();
|
try self.context.pushScope();
|
||||||
defer self.context.popScope();
|
defer self.context.popScope();
|
||||||
|
|||||||
Reference in New Issue
Block a user