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

Unified Diff: src/preparser.h

Issue 1127063003: [es6] implement default parameters via desugaring (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase + rossberg nits Created 5 years, 7 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
« no previous file with comments | « src/parser.cc ('k') | src/preparser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/preparser.h
diff --git a/src/preparser.h b/src/preparser.h
index 2fe5db1d08e9e0f1b63d68c69950ca29ae31371a..6c12be95a3d26c4d901d377d1c88ba017408eb4b 100644
--- a/src/preparser.h
+++ b/src/preparser.h
@@ -66,6 +66,7 @@ class ParserBase : public Traits {
public:
// Shorten type names defined by Traits.
typedef typename Traits::Type::Expression ExpressionT;
+ typedef typename Traits::Type::ExpressionList ExpressionListT;
typedef typename Traits::Type::Identifier IdentifierT;
typedef typename Traits::Type::FormalParameter FormalParameterT;
typedef typename Traits::Type::FormalParameterScope FormalParameterScopeT;
@@ -97,6 +98,7 @@ class ParserBase : public Traits {
allow_harmony_computed_property_names_(false),
allow_harmony_rest_params_(false),
allow_harmony_spreadcalls_(false),
+ allow_harmony_default_parameters_(false),
allow_strong_mode_(false) {}
// Getters that indicate whether certain syntactical constructs are
@@ -126,6 +128,9 @@ class ParserBase : public Traits {
bool allow_harmony_spread_arrays() const {
return allow_harmony_spread_arrays_;
}
+ bool allow_harmony_default_parameters() const {
+ return allow_harmony_default_parameters_;
+ }
bool allow_strong_mode() const { return allow_strong_mode_; }
@@ -167,6 +172,10 @@ class ParserBase : public Traits {
void set_allow_harmony_spread_arrays(bool allow) {
allow_harmony_spread_arrays_ = allow;
}
+ void set_allow_harmony_default_parameters(bool allow) {
+ allow_harmony_default_parameters_ = allow;
+ }
+
protected:
enum AllowRestrictedIdentifiers {
@@ -919,7 +928,9 @@ class ParserBase : public Traits {
void ParseFormalParameter(FormalParameterScopeT* scope, bool is_rest,
ExpressionClassifier* classifier, bool* ok);
- int ParseFormalParameterList(FormalParameterScopeT* scope, bool* has_rest,
+ int ParseFormalParameterList(FormalParameterScopeT* scope,
+ ExpressionListT initializers,
+ bool* has_parameter_expressions, bool* has_rest,
ExpressionClassifier* classifier, bool* ok);
void CheckArityRestrictions(
int param_count, FunctionLiteral::ArityRestriction arity_restriction,
@@ -1022,6 +1033,7 @@ class ParserBase : public Traits {
bool allow_harmony_spreadcalls_;
bool allow_harmony_destructuring_;
bool allow_harmony_spread_arrays_;
+ bool allow_harmony_default_parameters_;
bool allow_strong_mode_;
};
@@ -1799,8 +1811,8 @@ class PreParserTraits {
}
V8_INLINE bool DeclareFormalParameter(DuplicateFinder* scope,
- PreParserIdentifier param,
- bool is_rest);
+ PreParserIdentifier param, bool is_rest,
+ int pos);
void CheckConflictingVarDeclarations(Scope* scope, bool* ok) {}
@@ -1996,7 +2008,7 @@ PreParserExpression PreParserTraits::SpreadCallNew(PreParserExpression function,
bool PreParserTraits::DeclareFormalParameter(
DuplicateFinder* duplicate_finder, PreParserIdentifier current_identifier,
- bool is_rest) {
+ bool is_rest, int pos) {
return pre_parser_->scanner()->FindSymbol(duplicate_finder, 1) != 0;
}
@@ -3673,10 +3685,11 @@ void ParserBase<Traits>::ParseFormalParameter(FormalParameterScopeT* scope,
bool* ok) {
// FormalParameter[Yield,GeneratorParameter] :
// BindingElement[?Yield, ?GeneratorParameter]
+ int pos = peek_position();
IdentifierT name = ParseAndClassifyIdentifier(classifier, ok);
if (!*ok) return;
- bool was_declared = Traits::DeclareFormalParameter(scope, name, is_rest);
+ bool was_declared = Traits::DeclareFormalParameter(scope, name, is_rest, pos);
if (was_declared) {
classifier->RecordDuplicateFormalParameterError(scanner()->location());
}
@@ -3685,7 +3698,8 @@ void ParserBase<Traits>::ParseFormalParameter(FormalParameterScopeT* scope,
template <class Traits>
int ParserBase<Traits>::ParseFormalParameterList(
- FormalParameterScopeT* scope, bool* is_rest,
+ FormalParameterScopeT* scope, ExpressionListT initializers,
+ bool* has_parameter_expressions, bool* is_rest,
ExpressionClassifier* classifier, bool* ok) {
// FormalParameters[Yield,GeneratorParameter] :
// [empty]
@@ -3705,14 +3719,43 @@ int ParserBase<Traits>::ParseFormalParameterList(
if (peek() != Token::RPAREN) {
do {
+ Scope* param_scope = NewScope(scope_, BLOCK_SCOPE);
+ BlockState param_state(&scope_, param_scope);
+ param_scope->set_start_position(peek_position());
if (++parameter_count > Code::kMaxArguments) {
ReportMessage(MessageTemplate::kTooManyParameters);
*ok = false;
return -1;
}
+
+ int start_pos = peek_position();
*is_rest = allow_harmony_rest_params() && Check(Token::ELLIPSIS);
ParseFormalParameter(scope, *is_rest, classifier, ok);
if (!*ok) return -1;
+
+ // TODO(caitp, dslomov): set *has_parameter_expressions to true if
+ // formal parameter is an ObjectBindingPattern containing computed
+ // property keys
+
+ ExpressionT initializer = this->EmptyExpression();
+ if (allow_harmony_default_parameters() && Check(Token::ASSIGN)) {
+ // Default parameter initializer
+ static const bool accept_IN = true;
+ ExpressionClassifier classifier;
+ initializer = ParseAssignmentExpression(accept_IN, &classifier, ok);
+ if (!*ok) return -1;
+ *has_parameter_expressions = true;
+
+ // A rest parameter cannot be initialized.
+ if (*is_rest) {
+ Scanner::Location loc(start_pos, scanner()->location().end_pos);
+ ReportMessageAt(loc, MessageTemplate::kBadRestParameterInitializer);
+ *ok = false;
+ return -1;
+ }
+ }
+ param_scope->set_end_position(scanner()->location().end_pos);
+ initializers->Add(initializer, zone());
} while (!*is_rest && Check(Token::COMMA));
if (*is_rest && peek() == Token::COMMA) {
« no previous file with comments | « src/parser.cc ('k') | src/preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698