diff options
author | 2022-04-21 00:01:09 -0700 | |
---|---|---|
committer | 2022-04-21 00:01:09 -0700 | |
commit | e3ab3c51c307ba6df87eec2f5ec7cc8b1c1136b9 (patch) | |
tree | 21589d49f632c63beaeea57bd48c177c51e3ff15 | |
parent | 8c3acbaad8ffa58461d316fe930ad8813ccce213 (diff) | |
download | bun-e3ab3c51c307ba6df87eec2f5ec7cc8b1c1136b9.tar.gz bun-e3ab3c51c307ba6df87eec2f5ec7cc8b1c1136b9.tar.zst bun-e3ab3c51c307ba6df87eec2f5ec7cc8b1c1136b9.zip |
Update js_ast.zig
-rw-r--r-- | src/js_ast.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig index a75a67f98..65fedd805 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -4344,7 +4344,7 @@ pub const DeclaredSymbol = struct { pub const Dependency = struct { source_index: Index = Index.invalid, - part_index: u32 = 0, + part_index: Index.Int = 0, pub const List = BabyList(Dependency); }; |