diff options
Diffstat (limited to 'src/ast')
-rw-r--r-- | src/ast/base.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/base.zig b/src/ast/base.zig index 3889cd743..fd19c8a70 100644 --- a/src/ast/base.zig +++ b/src/ast/base.zig @@ -25,6 +25,7 @@ pub const NodeIndexNone = 4294967293; pub const Ref = packed struct { source_index: Int = std.math.maxInt(Ref.Int), inner_index: Int = 0, + is_source_contents_slice: bool = false, // 2 bits of padding for whatever is the parent pub const Int = u30; |