Index: src/ast/scopes.cc |
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc |
index 39ae8d450d9b69791d3de091b2989cf292a8dd3f..beffa53d74a971a1e39c02e8eb6dd5224b4c21f8 100644 |
--- a/src/ast/scopes.cc |
+++ b/src/ast/scopes.cc |
@@ -961,6 +961,8 @@ void Scope::Print(int n) { |
if (is_strict(language_mode())) { |
Indent(n1, "// strict mode scope\n"); |
} |
+ if (asm_module_) Indent(n1, "// scope is an asm module\n"); |
+ if (asm_function_) Indent(n1, "// scope is an asm function\n"); |
if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n"); |
if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n"); |
if (scope_uses_arguments_) Indent(n1, "// scope uses 'arguments'\n"); |