diff options
author | 2023-04-19 00:01:27 -0700 | |
---|---|---|
committer | 2023-04-19 00:01:27 -0700 | |
commit | ea47ed0ee5969d31e03c55ba3bc384466615e513 (patch) | |
tree | f7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/string_immutable.zig | |
parent | 36f9fd607a238fc029d64cc27a26b203a856cbbd (diff) | |
download | bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip |
Fix broken autocomplete
Diffstat (limited to 'src/string_immutable.zig')
-rw-r--r-- | src/string_immutable.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string_immutable.zig b/src/string_immutable.zig index bc0b59ea0..15e0fc032 100644 --- a/src/string_immutable.zig +++ b/src/string_immutable.zig @@ -4,7 +4,7 @@ const Environment = @import("./env.zig"); const string = bun.string; const stringZ = bun.stringZ; const CodePoint = bun.CodePoint; -const bun = @import("bun"); +const bun = @import("root").bun; pub const joiner = @import("./string_joiner.zig"); const log = bun.Output.scoped(.STR, true); @@ -1877,7 +1877,7 @@ pub fn elementLengthLatin1IntoUTF8(comptime Type: type, latin1_: Type) usize { return latin1_.len + total_non_ascii_count; } -const JSC = @import("bun").JSC; +const JSC = @import("root").bun.JSC; pub fn copyLatin1IntoUTF16(comptime Buffer: type, buf_: Buffer, comptime Type: type, latin1_: Type) EncodeIntoResult { var buf = buf_; |