mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 13:51:47 +00:00
Fix broken autocomplete
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user