aboutsummaryrefslogtreecommitdiff
path: root/src/js_ast.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/js_ast.zig')
-rw-r--r--src/js_ast.zig8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig
index 62089b3b2..b37e93be5 100644
--- a/src/js_ast.zig
+++ b/src/js_ast.zig
@@ -5947,8 +5947,6 @@ pub const Ast = struct {
wrapper_ref: Ref = Ref.None,
require_ref: Ref = Ref.None,
- bun_plugin: BunPlugin = .{},
-
prepend_part: ?Part = null,
// These are used when bundling. They are filled in during the parser pass
@@ -6420,7 +6418,6 @@ pub const Part = struct {
cjs_imports,
react_fast_refresh,
dirname_filename,
- bun_plugin,
bun_test,
dead_due_to_inlining,
commonjs_named_export,
@@ -6688,11 +6685,6 @@ pub fn printmem(comptime format: string, args: anytype) void {
Output.print(format, args);
}
-pub const BunPlugin = struct {
- ref: Ref = Ref.None,
- hoisted_stmts: std.ArrayListUnmanaged(Stmt) = .{},
-};
-
pub const Macro = struct {
const JavaScript = @import("root").bun.JSC;
const JSCBase = @import("./bun.js/base.zig");