diff options
Diffstat (limited to 'src/cli.zig')
-rw-r--r-- | src/cli.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cli.zig b/src/cli.zig index dbacee76f..93d473e85 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -387,6 +387,9 @@ pub const Cli = struct { } } + Output.println("Expr count: {d}", .{js_ast.Expr.icount}); + Output.println("Stmt count: {d}", .{js_ast.Stmt.icount}); + if (!did_write) { for (result.output_files) |file, i| { try writer.writeAll(file.contents); |