diff options
author | 2021-05-04 15:56:55 -0700 | |
---|---|---|
committer | 2021-05-04 15:56:55 -0700 | |
commit | a4322470530f710fed320ccc740d6ef320c940c5 (patch) | |
tree | 60352e1bc4b16c5bbe9ee16ea8829c7811e33e7f /src/ast | |
parent | d19f939e7dc7e3250d01688647236c16be6a7374 (diff) | |
download | bun-a4322470530f710fed320ccc740d6ef320c940c5.tar.gz bun-a4322470530f710fed320ccc740d6ef320c940c5.tar.zst bun-a4322470530f710fed320ccc740d6ef320c940c5.zip |
slice
Former-commit-id: 0bfd74af5534635c907be1ecbf2c421970d4a005
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; |