OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_PARSER_H_ | 5 #ifndef V8_PARSER_H_ |
6 #define V8_PARSER_H_ | 6 #define V8_PARSER_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/ast.h" | 9 #include "src/ast.h" |
10 #include "src/compiler.h" // TODO(titzer): remove this include dependency | 10 #include "src/compiler.h" // TODO(titzer): remove this include dependency |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 // declarations from different scopes. It covers for example | 1127 // declarations from different scopes. It covers for example |
1128 // | 1128 // |
1129 // function f() { { { var x; } let x; } } | 1129 // function f() { { { var x; } let x; } } |
1130 // function g() { { var x; let x; } } | 1130 // function g() { { var x; let x; } } |
1131 // | 1131 // |
1132 // The var declarations are hoisted to the function scope, but originate from | 1132 // The var declarations are hoisted to the function scope, but originate from |
1133 // a scope where the name has also been let bound or the var declaration is | 1133 // a scope where the name has also been let bound or the var declaration is |
1134 // hoisted over such a scope. | 1134 // hoisted over such a scope. |
1135 void CheckConflictingVarDeclarations(Scope* scope, bool* ok); | 1135 void CheckConflictingVarDeclarations(Scope* scope, bool* ok); |
1136 | 1136 |
| 1137 // Implement sloppy block-scoped functions, ES2015 Annex B 3.3 |
| 1138 void InsertSloppyBlockFunctionVarBindings(Scope* scope, bool* ok); |
| 1139 |
1137 // Parser support | 1140 // Parser support |
1138 VariableProxy* NewUnresolved(const AstRawString* name, VariableMode mode); | 1141 VariableProxy* NewUnresolved(const AstRawString* name, VariableMode mode); |
1139 Variable* Declare(Declaration* declaration, | 1142 Variable* Declare(Declaration* declaration, |
1140 DeclarationDescriptor::Kind declaration_kind, bool resolve, | 1143 DeclarationDescriptor::Kind declaration_kind, bool resolve, |
1141 bool* ok, Scope* declaration_scope = nullptr); | 1144 bool* ok, Scope* declaration_scope = nullptr); |
1142 | 1145 |
1143 bool TargetStackContainsLabel(const AstRawString* label); | 1146 bool TargetStackContainsLabel(const AstRawString* label); |
1144 BreakableStatement* LookupBreakTarget(const AstRawString* label, bool* ok); | 1147 BreakableStatement* LookupBreakTarget(const AstRawString* label, bool* ok); |
1145 IterationStatement* LookupContinueTarget(const AstRawString* label, bool* ok); | 1148 IterationStatement* LookupContinueTarget(const AstRawString* label, bool* ok); |
1146 | 1149 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1366 parser_->BuildParameterInitializationBlock(parameters, ok); | 1369 parser_->BuildParameterInitializationBlock(parameters, ok); |
1367 if (!*ok) return; | 1370 if (!*ok) return; |
1368 if (init_block != nullptr) { | 1371 if (init_block != nullptr) { |
1369 body->Add(init_block, parser_->zone()); | 1372 body->Add(init_block, parser_->zone()); |
1370 } | 1373 } |
1371 } | 1374 } |
1372 } | 1375 } |
1373 } } // namespace v8::internal | 1376 } } // namespace v8::internal |
1374 | 1377 |
1375 #endif // V8_PARSER_H_ | 1378 #endif // V8_PARSER_H_ |
OLD | NEW |