diff options
author | 2021-12-27 18:06:31 -0800 | |
---|---|---|
committer | 2021-12-27 18:06:31 -0800 | |
commit | 336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6 (patch) | |
tree | f0d56c9f4ea3b318c9c9e635969de46b48d226d5 /src/js_parser | |
parent | c9c7521f4f6763dac8c5910ffcf2451c4c2f60d8 (diff) | |
download | bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.tar.gz bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.tar.zst bun-336a4b6ac2b4a8ee9a5c972f3d74bfff8eca13e6.zip |
Prepare to run unit tests & remove some dead code (#92)
* Remove some dead code
* :skull: code
* Fix the zig tests
* [JS Printer] Print integers faster & less scientific notation on decimals
* :skull: dead code
* skip
* Run all the unit tests
Diffstat (limited to 'src/js_parser')
-rw-r--r-- | src/js_parser/imports.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/js_parser/imports.zig b/src/js_parser/imports.zig index 80f162d88..f01dfced0 100644 --- a/src/js_parser/imports.zig +++ b/src/js_parser/imports.zig @@ -4,7 +4,6 @@ pub const js_lexer = @import("../js_lexer.zig"); pub const importRecord = @import("../import_record.zig"); pub const js_ast = @import("../js_ast.zig"); pub const options = @import("../options.zig"); -pub const alloc = @import("../alloc.zig"); pub const js_printer = @import("../js_printer.zig"); pub const renamer = @import("../renamer.zig"); const _runtime = @import("../runtime.zig"); |