Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: src/parser.h

Issue 1332873003: Implement sloppy-mode block-defined functions (Annex B 3.3) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Improve type clarity Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698