diff options
author | 2021-05-30 18:26:18 -0700 | |
---|---|---|
committer | 2021-05-30 18:26:18 -0700 | |
commit | dd72bf5ab657af89d45ee629e8432d9b860a2351 (patch) | |
tree | 9646821a9dc179f2fea2361cbed534ac441c550a /src | |
parent | 741d35f0b3f50edd58592259890ca0ef71d2b8dd (diff) | |
download | bun-dd72bf5ab657af89d45ee629e8432d9b860a2351.tar.gz bun-dd72bf5ab657af89d45ee629e8432d9b860a2351.tar.zst bun-dd72bf5ab657af89d45ee629e8432d9b860a2351.zip |
cool
Former-commit-id: 7dc3ee4c893a476cee1e78c19f154f33a9d824a9
Diffstat (limited to 'src')
-rw-r--r-- | src/api/demo/pages/index.tsx (renamed from src/api/demo/pages/index.jsx) | 0 | ||||
-rw-r--r-- | src/cli.zig | 18 | ||||
-rw-r--r-- | src/fs.zig | 4 | ||||
-rw-r--r-- | src/global.zig | 5 | ||||
-rw-r--r-- | src/js_parser/js_parser.zig | 2 | ||||
-rw-r--r-- | src/linker.zig | 5 | ||||
-rw-r--r-- | src/options.zig | 1 | ||||
-rw-r--r-- | src/test/fixtures/object-newline.js | 10 |
8 files changed, 43 insertions, 2 deletions
diff --git a/src/api/demo/pages/index.jsx b/src/api/demo/pages/index.tsx index 9523fbc8b..9523fbc8b 100644 --- a/src/api/demo/pages/index.jsx +++ b/src/api/demo/pages/index.tsx diff --git a/src/cli.zig b/src/cli.zig index de0be93e2..74ba7e252 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -329,7 +329,18 @@ pub const Cli = struct { } else |err| {} did_write = true; - var root_dir = try std.fs.openDirAbsolute(result.outbase, std.fs.Dir.OpenDirOptions{}); + var root_dir = std.fs.openDirAbsolute(result.outbase, std.fs.Dir.OpenDirOptions{}) catch brk: { + std.fs.makeDirAbsolute(result.outbase) catch |err| { + Output.printErrorln("error: Unable to mkdir \"{s}\": \"{s}\"", .{ result.outbase, @errorName(err) }); + std.os.exit(1); + }; + + var handle = std.fs.openDirAbsolute(result.outbase, std.fs.Dir.OpenDirOptions{}) catch |err2| { + Output.printErrorln("error: Unable to open \"{s}\": \"{s}\"", .{ result.outbase, @errorName(err2) }); + std.os.exit(1); + }; + break :brk handle; + }; // On posix, file handles automatically close on process exit by the OS // Closing files shows up in profiling. // So don't do that unless we actually need to. @@ -360,8 +371,13 @@ pub const Cli = struct { .truncate = true, }) catch |err2| return err2); }; + try _handle.seekTo(0); + if (FeatureFlags.disable_filesystem_cache) { + _ = std.os.fcntl(_handle.handle, std.os.F_NOCACHE, 1) catch 0; + } + defer { if (do_we_need_to_close) { _handle.close(); diff --git a/src/fs.zig b/src/fs.zig index f13ee0495..5ac8983db 100644 --- a/src/fs.zig +++ b/src/fs.zig @@ -704,6 +704,10 @@ pub const FileSystem = struct { pub fn readFileWithHandle(fs: *RealFS, path: string, _size: ?usize, file: std.fs.File) !File { FileSystem.setMaxFd(file.handle); + if (FeatureFlags.disable_filesystem_cache) { + _ = std.os.fcntl(file.handle, std.os.F_NOCACHE, 1) catch 0; + } + // Skip the extra file.stat() call when possible var size = _size orelse (file.getEndPos() catch |err| { fs.readFileError(path, err); diff --git a/src/global.zig b/src/global.zig index 821f09b5f..4e95b7d1f 100644 --- a/src/global.zig +++ b/src/global.zig @@ -27,10 +27,15 @@ pub const FeatureFlags = struct { pub const use_std_path_relative = false; pub const use_std_path_join = false; + // Debug helpers pub const print_ast = false; pub const disable_printing_null = false; + // This was a ~5% performance improvement pub const store_file_descriptors = !isWindows and !isBrowser; + + // This doesn't really seem to do anything for us + pub const disable_filesystem_cache = false and std.Target.current.os.tag == .macos; }; pub const enableTracing = true; diff --git a/src/js_parser/js_parser.zig b/src/js_parser/js_parser.zig index 089fccb93..5ab16f072 100644 --- a/src/js_parser/js_parser.zig +++ b/src/js_parser/js_parser.zig @@ -10176,7 +10176,7 @@ pub const P = struct { .e_import => |e_| { const state = TransposeState{ .is_await_target = if (p.await_target != null) p.await_target.?.e_import == e_ else false, - .is_then_catch_target = expr.data.e_import == p.then_catch_chain.next_target.e_import and p.then_catch_chain.has_catch, + .is_then_catch_target = p.then_catch_chain.has_catch and std.meta.activeTag(p.then_catch_chain.next_target) == .e_import and expr.data.e_import == p.then_catch_chain.next_target.e_import, .loc = e_.expr.loc, }; diff --git a/src/linker.zig b/src/linker.zig index 884dfe6ee..db9db78e0 100644 --- a/src/linker.zig +++ b/src/linker.zig @@ -8,4 +8,9 @@ pub const Linker = struct { pub fn requireOrImportMetaForSource(c: Linker, source_index: Ref.Int) RequireOrImportMeta { return RequireOrImportMeta{}; } + + // This modifies the Ast in-place! + // But more importantly, this does the following: + // - Wrap CommonJS files + pub fn link(allocator: *std.mem.Allocator, ast: *js_ast.Ast) !void {} }; diff --git a/src/options.zig b/src/options.zig index afa45e039..22d335aa3 100644 --- a/src/options.zig +++ b/src/options.zig @@ -63,6 +63,7 @@ pub const ExternalModules = struct { if (platform == .node) { // TODO: fix this stupid copy + result.node_modules.hash_map.ensureCapacity(NodeBuiltinPatterns.len) catch unreachable; for (NodeBuiltinPatterns) |pattern| { result.node_modules.put(pattern) catch unreachable; } diff --git a/src/test/fixtures/object-newline.js b/src/test/fixtures/object-newline.js new file mode 100644 index 000000000..cc4371415 --- /dev/null +++ b/src/test/fixtures/object-newline.js @@ -0,0 +1,10 @@ +// hey +const foo = import("react"); + +const Bar = { + foo: true, + bar: 1, + nested: { + hey: 1, + }, +}; |