diff options
Diffstat (limited to 'src/bundler.zig')
-rw-r--r-- | src/bundler.zig | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/bundler.zig b/src/bundler.zig index b249c266a..6afbd402b 100644 --- a/src/bundler.zig +++ b/src/bundler.zig @@ -1,10 +1,15 @@ const std = @import("std"); const options = @import("options.zig"); +const logger = @import("logger.zig"); +const js_ast = @import("js_ast.zig"); pub const Bundler = struct { - options: options.TransformOptions, + options: options.TransformOptions, + logger: logger.Log, + pub fn init(options: options.TransformOptions, allocator: *std.mem.Allocator) Bundler { + var log = logger.Log{ .msgs = ArrayList(Msg).init(allocator) }; + } - pub fn - -}
\ No newline at end of file + pub fn scan() void {} +}; |