| Index: src/scopes.cc
|
| diff --git a/src/scopes.cc b/src/scopes.cc
|
| index 74c3f0be04db03830ea4d2006642a571c7178018..39b67a886444fe1db46a54e4006d37abd68d447a 100644
|
| --- a/src/scopes.cc
|
| +++ b/src/scopes.cc
|
| @@ -902,9 +902,8 @@ void Scope::Print(int n) {
|
| if (scope_uses_arguments_) Indent(n1, "// scope uses 'arguments'\n");
|
| if (scope_uses_super_property_)
|
| Indent(n1, "// scope uses 'super' property\n");
|
| - if (scope_uses_super_constructor_call_) {
|
| + if (scope_uses_super_constructor_call_)
|
| Indent(n1, "// scope uses 'super' constructor\n");
|
| - }
|
| if (scope_uses_this_) Indent(n1, "// scope uses 'this'\n");
|
| if (inner_scope_uses_arguments_) {
|
| Indent(n1, "// inner scope uses 'arguments'\n");
|
|
|