Fix broken autocomplete

This commit is contained in:
Jarred Sumner
2023-04-19 00:01:27 -07:00
parent 36f9fd607a
commit ea47ed0ee5
177 changed files with 2855 additions and 3668 deletions

View File

@@ -4,10 +4,10 @@ pub const VLQ_BASE_MASK: u32 = VLQ_BASE - 1;
pub const VLQ_CONTINUATION_BIT: u32 = VLQ_BASE;
pub const VLQ_CONTINUATION_MASK: u32 = 1 << VLQ_CONTINUATION_BIT;
const std = @import("std");
const bun = @import("bun");
const bun = @import("root").bun;
const JSAst = bun.JSAst;
const BabyList = JSAst.BabyList;
const Logger = @import("bun").logger;
const Logger = @import("root").bun.logger;
const strings = bun.strings;
const MutableString = bun.MutableString;
const Joiner = @import("../string_joiner.zig");