aboutsummaryrefslogtreecommitdiff
path: root/src/sourcemap/sourcemap.zig
diff options
context:
space:
mode:
authorGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:38:16 -0800
committerGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:38:16 -0800
commit168bb1427f2dce8ce871da30fbc22e3a0c83f9a2 (patch)
treebe48052eca10da6c2cfcd49fbb66055c65bf6619 /src/sourcemap/sourcemap.zig
parent996ef44c021a692403082c70e0eedc2ce1696eff (diff)
downloadbun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip
move more things
Diffstat (limited to 'src/sourcemap/sourcemap.zig')
-rw-r--r--src/sourcemap/sourcemap.zig13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/sourcemap/sourcemap.zig b/src/sourcemap/sourcemap.zig
index 592df5d1d..54d58fbe7 100644
--- a/src/sourcemap/sourcemap.zig
+++ b/src/sourcemap/sourcemap.zig
@@ -4,15 +4,16 @@ 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 JSAst = @import("../js_ast.zig");
+const bun = @import("bun");
+const JSAst = bun.JSAst;
const BabyList = JSAst.BabyList;
const Logger = @import("bun").logger;
-const strings = @import("../string_immutable.zig");
-const MutableString = @import("../string_mutable.zig").MutableString;
+const strings = bun.strings;
+const MutableString = bun.MutableString;
const Joiner = @import("../string_joiner.zig");
-const JSPrinter = @import("../js_printer.zig");
-const URL = @import("../url.zig").URL;
-const FileSystem = @import("../fs.zig").FileSystem;
+const JSPrinter = bun.js_printer;
+const URL = bun.URL;
+const FileSystem = bun.fs.FileSystem;
const SourceMap = @This();