Index: src/ast/scopes.cc |
diff --git a/src/ast/scopes.cc b/src/ast/scopes.cc |
index 1324f43b04d3b6fe14878d9e503c20c5a1ba702b..14aaa4738d8934765f441a5eda46847085b52413 100644 |
--- a/src/ast/scopes.cc |
+++ b/src/ast/scopes.cc |
@@ -1569,6 +1569,9 @@ void Scope::Print(int n) { |
} |
PrintF(" { // (%d, %d)\n", start_position(), end_position()); |
+ if (is_hidden()) { |
+ Indent(n1, "// is hidden\n"); |
+ } |
// Function name, if any (named function literals, only). |
if (function != nullptr) { |