aboutsummaryrefslogtreecommitdiff
path: root/src/mdx/mdx_parser.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/mdx/mdx_parser.zig
parent996ef44c021a692403082c70e0eedc2ce1696eff (diff)
downloadbun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.gz
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.tar.zst
bun-168bb1427f2dce8ce871da30fbc22e3a0c83f9a2.zip
move more things
Diffstat (limited to 'src/mdx/mdx_parser.zig')
-rw-r--r--src/mdx/mdx_parser.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mdx/mdx_parser.zig b/src/mdx/mdx_parser.zig
index 3b2064c39..79ce04fbb 100644
--- a/src/mdx/mdx_parser.zig
+++ b/src/mdx/mdx_parser.zig
@@ -3,7 +3,7 @@ const logger = @import("bun").logger;
const mdx_lexer = @import("./mdx_lexer.zig");
const Lexer = mdx_lexer.Lexer;
const importRecord = @import("../import_record.zig");
-const js_ast = @import("../js_ast.zig");
+const js_ast = bun.JSAst;
const JSParser = @import("../js_parser/js_parser.zig").MDXParser;
const ParseStatementOptions = @import("../js_parser/js_parser.zig").ParseStatementOptions;
@@ -24,7 +24,7 @@ const expect = std.testing.expect;
const ImportKind = importRecord.ImportKind;
const BindingNodeIndex = js_ast.BindingNodeIndex;
const Define = @import("../defines.zig").Define;
-const js_lexer = @import("../js_lexer.zig");
+const js_lexer = bun.js_lexer;
const StmtNodeIndex = js_ast.StmtNodeIndex;
const ExprNodeIndex = js_ast.ExprNodeIndex;
const ExprNodeList = js_ast.ExprNodeList;