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

Unified Diff: src/parser.cc

Issue 1259283002: [es6] Implement proper TDZ for parameters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: src/parser.cc
diff --git a/src/parser.cc b/src/parser.cc
index 73cf136cd2c549b46b28495c78ea18b2e8ecf897..6488f9f38f545f82bebf1445f1e946fd4f5fe927 100644
--- a/src/parser.cc
+++ b/src/parser.cc
@@ -1203,6 +1203,9 @@ FunctionLiteral* Parser::ParseLazy(Isolate* isolate, ParseInfo* info,
// BindingIdentifier
const bool is_rest = false;
ParseFormalParameter(is_rest, &formals, &formals_classifier, &ok);
adamk 2015/08/03 18:43:51 Check ok before declaring?
rossberg 2015/08/04 15:31:19 Done.
+ DeclareFormalParameter(
+ formals.scope, formals.at(0), formals.is_simple,
+ &formals_classifier);
}
}
@@ -2216,10 +2219,7 @@ Statement* Parser::ParseFunctionDeclaration(
is_strong(language_mode())
? CONST
: (is_strict(language_mode()) || allow_harmony_sloppy()) &&
- !(scope_->is_script_scope() || scope_->is_eval_scope() ||
- scope_->is_function_scope())
- ? LET
- : VAR;
+ !scope_->is_declaration_scope() ? LET : VAR;
adamk 2015/08/03 18:43:51 This looks unrelated to the rest of the change; ma
rossberg 2015/08/04 15:31:19 You are right, I overlooked this one when splittin
adamk 2015/08/04 17:25:03 Given that the rest of this change is needed to ex
VariableProxy* proxy = NewUnresolved(name, mode);
Declaration* declaration =
factory()->NewFunctionDeclaration(proxy, mode, fun, scope_, pos);
@@ -3902,10 +3902,26 @@ void ParserTraits::ParseArrowFunctionFormalParameters(
}
++parameters->arity;
- ExpressionClassifier classifier;
- DeclareFormalParameter(parameters, expr, is_rest, &classifier);
- if (!duplicate_loc->IsValid()) {
- *duplicate_loc = classifier.duplicate_formal_parameter_error().location;
+ AddFormalParameter(parameters, expr, is_rest);
+}
+
+
+void ParserTraits::ParseArrowFunctionFormalParameterList(
+ ParserFormalParameters* parameters, Expression* expr,
+ const Scanner::Location& params_loc,
+ Scanner::Location* duplicate_loc, bool* ok) {
+ ParseArrowFunctionFormalParameters(parameters, expr, params_loc,
+ duplicate_loc, ok);
+ if (!*ok) return;
+
+ for (int i = 0; i < parameters->arity; ++i) {
adamk 2015/08/03 18:43:51 Seems scary to use arity for this instead of the p
+ auto parameter = parameters->at(i);
+ ExpressionClassifier classifier;
+ DeclareFormalParameter(
+ parameters->scope, parameter, parameters->is_simple, &classifier);
+ if (!duplicate_loc->IsValid()) {
+ *duplicate_loc = classifier.duplicate_formal_parameter_error().location;
+ }
}
}
@@ -4317,7 +4333,8 @@ Block* Parser::BuildParameterInitializationBlock(
factory()->NewBlock(NULL, 1, true, RelocInfo::kNoPosition);
for (int i = 0; i < parameters.params.length(); ++i) {
auto parameter = parameters.params[i];
- if (parameter.pattern == nullptr) continue;
+ // TODO(caitp,rossberg): Remove special handling for rest once desugared.
+ if (parameter.is_rest) break;
DeclarationDescriptor descriptor;
descriptor.declaration_kind = DeclarationDescriptor::PARAMETER;
descriptor.parser = this;

Powered by Google App Engine
This is Rietveld 408576698