Clean up FunctionLiteral AST node cruft

Removed unused name_ field, made bitfield 16-bits long, and moved it to
the start of the struct, resulting in a reduction of 8 bytes on both
32 and 64-bit platforms.

Most other changes (which prompted this work) are cosmetic:r
  - Combined redundant enums
  - Named enum values kConsistently
  - Consistently use booleans in bitfield, using enum values
    only for passing information into NewFunctionLiteral
  - Removed unneeded arguments from NewFunctionLiteral, reducing
    clutter at callsites
  - Added const correctness consistently

Review URL: https://codereview.chromium.org/1566053002

Cr-Commit-Position: refs/heads/master@{#33194}
This commit is contained in:
adamk 2016-01-08 12:38:07 -08:00 committed by Commit bot
parent 067c27be65
commit 316dc17331
5 changed files with 81 additions and 97 deletions

View File

@ -2557,30 +2557,17 @@ class Throw final : public Expression {
class FunctionLiteral final : public Expression { class FunctionLiteral final : public Expression {
public: public:
enum FunctionType { enum FunctionType {
ANONYMOUS_EXPRESSION, kAnonymousExpression,
NAMED_EXPRESSION, kNamedExpression,
DECLARATION kDeclaration,
kGlobalOrEval
}; };
enum ParameterFlag { enum ParameterFlag { kNoDuplicateParameters, kHasDuplicateParameters };
kNoDuplicateParameters = 0,
kHasDuplicateParameters = 1
};
enum IsFunctionFlag {
kGlobalOrEval,
kIsFunction
};
enum EagerCompileHint { kShouldEagerCompile, kShouldLazyCompile }; enum EagerCompileHint { kShouldEagerCompile, kShouldLazyCompile };
enum ShouldBeUsedOnceHint { kShouldBeUsedOnce, kDontKnowIfShouldBeUsedOnce }; enum ArityRestriction { kNormalArity, kGetterArity, kSetterArity };
enum ArityRestriction {
NORMAL_ARITY,
GETTER_ARITY,
SETTER_ARITY
};
DECLARE_NODE_TYPE(FunctionLiteral) DECLARE_NODE_TYPE(FunctionLiteral)
@ -2641,14 +2628,14 @@ class FunctionLiteral final : public Expression {
inferred_name_ = Handle<String>(); inferred_name_ = Handle<String>();
} }
bool pretenure() { return Pretenure::decode(bitfield_); } bool pretenure() const { return Pretenure::decode(bitfield_); }
void set_pretenure() { bitfield_ |= Pretenure::encode(true); } void set_pretenure() { bitfield_ = Pretenure::update(bitfield_, true); }
bool has_duplicate_parameters() { bool has_duplicate_parameters() const {
return HasDuplicateParameters::decode(bitfield_); return HasDuplicateParameters::decode(bitfield_);
} }
bool is_function() { return IsFunction::decode(bitfield_) == kIsFunction; } bool is_function() const { return IsFunction::decode(bitfield_); }
// This is used as a heuristic on when to eagerly compile a function // This is used as a heuristic on when to eagerly compile a function
// literal. We consider the following constructs as hints that the // literal. We consider the following constructs as hints that the
@ -2656,19 +2643,19 @@ class FunctionLiteral final : public Expression {
// - (function() { ... })(); // - (function() { ... })();
// - var x = function() { ... }(); // - var x = function() { ... }();
bool should_eager_compile() const { bool should_eager_compile() const {
return EagerCompileHintBit::decode(bitfield_) == kShouldEagerCompile; return ShouldEagerCompile::decode(bitfield_);
} }
void set_should_eager_compile() { void set_should_eager_compile() {
bitfield_ = EagerCompileHintBit::update(bitfield_, kShouldEagerCompile); bitfield_ = ShouldEagerCompile::update(bitfield_, true);
} }
// A hint that we expect this function to be called (exactly) once, // A hint that we expect this function to be called (exactly) once,
// i.e. we suspect it's an initialization function. // i.e. we suspect it's an initialization function.
bool should_be_used_once_hint() const { bool should_be_used_once_hint() const {
return ShouldBeUsedOnceHintBit::decode(bitfield_) == kShouldBeUsedOnce; return ShouldBeUsedOnceHint::decode(bitfield_);
} }
void set_should_be_used_once_hint() { void set_should_be_used_once_hint() {
bitfield_ = ShouldBeUsedOnceHintBit::update(bitfield_, kShouldBeUsedOnce); bitfield_ = ShouldBeUsedOnceHint::update(bitfield_, true);
} }
FunctionKind kind() const { return FunctionKindBits::decode(bitfield_); } FunctionKind kind() const { return FunctionKindBits::decode(bitfield_); }
@ -2694,7 +2681,6 @@ class FunctionLiteral final : public Expression {
int expected_property_count, int parameter_count, int expected_property_count, int parameter_count,
FunctionType function_type, FunctionType function_type,
ParameterFlag has_duplicate_parameters, ParameterFlag has_duplicate_parameters,
IsFunctionFlag is_function,
EagerCompileHint eager_compile_hint, FunctionKind kind, EagerCompileHint eager_compile_hint, FunctionKind kind,
int position) int position)
: Expression(zone, position), : Expression(zone, position),
@ -2708,20 +2694,33 @@ class FunctionLiteral final : public Expression {
expected_property_count_(expected_property_count), expected_property_count_(expected_property_count),
parameter_count_(parameter_count), parameter_count_(parameter_count),
function_token_position_(RelocInfo::kNoPosition) { function_token_position_(RelocInfo::kNoPosition) {
bitfield_ = IsExpression::encode(function_type != DECLARATION) | bitfield_ =
IsAnonymous::encode(function_type == ANONYMOUS_EXPRESSION) | IsExpression::encode(function_type != kDeclaration) |
Pretenure::encode(false) | IsAnonymous::encode(function_type == kAnonymousExpression) |
HasDuplicateParameters::encode(has_duplicate_parameters) | Pretenure::encode(false) |
IsFunction::encode(is_function) | HasDuplicateParameters::encode(has_duplicate_parameters ==
EagerCompileHintBit::encode(eager_compile_hint) | kHasDuplicateParameters) |
FunctionKindBits::encode(kind) | IsFunction::encode(function_type != kGlobalOrEval) |
ShouldBeUsedOnceHintBit::encode(kDontKnowIfShouldBeUsedOnce); ShouldEagerCompile::encode(eager_compile_hint == kShouldEagerCompile) |
FunctionKindBits::encode(kind) | ShouldBeUsedOnceHint::encode(false);
DCHECK(IsValidFunctionKind(kind)); DCHECK(IsValidFunctionKind(kind));
} }
private: private:
class IsExpression : public BitField16<bool, 0, 1> {};
class IsAnonymous : public BitField16<bool, 1, 1> {};
class Pretenure : public BitField16<bool, 2, 1> {};
class HasDuplicateParameters : public BitField16<bool, 3, 1> {};
class IsFunction : public BitField16<bool, 4, 1> {};
class ShouldEagerCompile : public BitField16<bool, 5, 1> {};
class FunctionKindBits : public BitField16<FunctionKind, 6, 8> {};
class ShouldBeUsedOnceHint : public BitField16<bool, 15, 1> {};
// Start with 16-bit field, which should get packed together
// with Expression's trailing 16-bit field.
uint16_t bitfield_;
const AstString* raw_name_; const AstString* raw_name_;
Handle<String> name_;
Scope* scope_; Scope* scope_;
ZoneList<Statement*>* body_; ZoneList<Statement*>* body_;
const AstString* raw_inferred_name_; const AstString* raw_inferred_name_;
@ -2733,17 +2732,6 @@ class FunctionLiteral final : public Expression {
int expected_property_count_; int expected_property_count_;
int parameter_count_; int parameter_count_;
int function_token_position_; int function_token_position_;
unsigned bitfield_;
class IsExpression : public BitField<bool, 0, 1> {};
class IsAnonymous : public BitField<bool, 1, 1> {};
class Pretenure : public BitField<bool, 2, 1> {};
class HasDuplicateParameters : public BitField<ParameterFlag, 3, 1> {};
class IsFunction : public BitField<IsFunctionFlag, 4, 1> {};
class EagerCompileHintBit : public BitField<EagerCompileHint, 5, 1> {};
class FunctionKindBits : public BitField<FunctionKind, 6, 8> {};
class ShouldBeUsedOnceHintBit : public BitField<ShouldBeUsedOnceHint, 15, 1> {
};
}; };
@ -3325,19 +3313,18 @@ class AstNodeFactory final BASE_EMBEDDED {
} }
FunctionLiteral* NewFunctionLiteral( FunctionLiteral* NewFunctionLiteral(
const AstRawString* name, AstValueFactory* ast_value_factory, const AstRawString* name, Scope* scope, ZoneList<Statement*>* body,
Scope* scope, ZoneList<Statement*>* body, int materialized_literal_count, int materialized_literal_count, int expected_property_count,
int expected_property_count, int parameter_count, int parameter_count,
FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionLiteral::ParameterFlag has_duplicate_parameters,
FunctionLiteral::FunctionType function_type, FunctionLiteral::FunctionType function_type,
FunctionLiteral::IsFunctionFlag is_function,
FunctionLiteral::EagerCompileHint eager_compile_hint, FunctionKind kind, FunctionLiteral::EagerCompileHint eager_compile_hint, FunctionKind kind,
int position) { int position) {
return new (parser_zone_) FunctionLiteral( return new (parser_zone_) FunctionLiteral(
parser_zone_, name, ast_value_factory, scope, body, parser_zone_, name, ast_value_factory_, scope, body,
materialized_literal_count, expected_property_count, parameter_count, materialized_literal_count, expected_property_count, parameter_count,
function_type, has_duplicate_parameters, is_function, function_type, has_duplicate_parameters, eager_compile_hint, kind,
eager_compile_hint, kind, position); position);
} }
ClassLiteral* NewClassLiteral(const AstRawString* name, Scope* scope, ClassLiteral* NewClassLiteral(const AstRawString* name, Scope* scope,

View File

@ -1749,8 +1749,8 @@ ParserBase<Traits>::ParsePropertyDefinition(
value = this->ParseFunctionLiteral( value = this->ParseFunctionLiteral(
*name, scanner()->location(), kSkipFunctionNameCheck, kind, *name, scanner()->location(), kSkipFunctionNameCheck, kind,
RelocInfo::kNoPosition, FunctionLiteral::ANONYMOUS_EXPRESSION, RelocInfo::kNoPosition, FunctionLiteral::kAnonymousExpression,
FunctionLiteral::NORMAL_ARITY, language_mode(), FunctionLiteral::kNormalArity, language_mode(),
CHECK_OK_CUSTOM(EmptyObjectLiteralProperty)); CHECK_OK_CUSTOM(EmptyObjectLiteralProperty));
return factory()->NewObjectLiteralProperty(name_expression, value, return factory()->NewObjectLiteralProperty(name_expression, value,
@ -1789,8 +1789,8 @@ ParserBase<Traits>::ParsePropertyDefinition(
if (!in_class) kind = WithObjectLiteralBit(kind); if (!in_class) kind = WithObjectLiteralBit(kind);
typename Traits::Type::FunctionLiteral value = this->ParseFunctionLiteral( typename Traits::Type::FunctionLiteral value = this->ParseFunctionLiteral(
*name, scanner()->location(), kSkipFunctionNameCheck, kind, *name, scanner()->location(), kSkipFunctionNameCheck, kind,
RelocInfo::kNoPosition, FunctionLiteral::ANONYMOUS_EXPRESSION, RelocInfo::kNoPosition, FunctionLiteral::kAnonymousExpression,
is_get ? FunctionLiteral::GETTER_ARITY : FunctionLiteral::SETTER_ARITY, is_get ? FunctionLiteral::kGetterArity : FunctionLiteral::kSetterArity,
language_mode(), CHECK_OK_CUSTOM(EmptyObjectLiteralProperty)); language_mode(), CHECK_OK_CUSTOM(EmptyObjectLiteralProperty));
// Make sure the name expression is a string since we need a Name for // Make sure the name expression is a string since we need a Name for
@ -2556,12 +2556,12 @@ ParserBase<Traits>::ParseMemberExpression(ExpressionClassifier* classifier,
bool is_strict_reserved_name = false; bool is_strict_reserved_name = false;
Scanner::Location function_name_location = Scanner::Location::invalid(); Scanner::Location function_name_location = Scanner::Location::invalid();
FunctionLiteral::FunctionType function_type = FunctionLiteral::FunctionType function_type =
FunctionLiteral::ANONYMOUS_EXPRESSION; FunctionLiteral::kAnonymousExpression;
if (peek_any_identifier()) { if (peek_any_identifier()) {
name = ParseIdentifierOrStrictReservedWord( name = ParseIdentifierOrStrictReservedWord(
is_generator, &is_strict_reserved_name, CHECK_OK); is_generator, &is_strict_reserved_name, CHECK_OK);
function_name_location = scanner()->location(); function_name_location = scanner()->location();
function_type = FunctionLiteral::NAMED_EXPRESSION; function_type = FunctionLiteral::kNamedExpression;
} }
result = this->ParseFunctionLiteral( result = this->ParseFunctionLiteral(
name, function_name_location, name, function_name_location,
@ -2569,7 +2569,7 @@ ParserBase<Traits>::ParseMemberExpression(ExpressionClassifier* classifier,
: kFunctionNameValidityUnknown, : kFunctionNameValidityUnknown,
is_generator ? FunctionKind::kGeneratorFunction is_generator ? FunctionKind::kGeneratorFunction
: FunctionKind::kNormalFunction, : FunctionKind::kNormalFunction,
function_token_position, function_type, FunctionLiteral::NORMAL_ARITY, function_token_position, function_type, FunctionLiteral::kNormalArity,
language_mode(), CHECK_OK); language_mode(), CHECK_OK);
} else if (peek() == Token::SUPER) { } else if (peek() == Token::SUPER) {
const bool is_new = false; const bool is_new = false;
@ -2942,14 +2942,14 @@ void ParserBase<Traits>::CheckArityRestrictions(
int param_count, FunctionLiteral::ArityRestriction arity_restriction, int param_count, FunctionLiteral::ArityRestriction arity_restriction,
bool has_rest, int formals_start_pos, int formals_end_pos, bool* ok) { bool has_rest, int formals_start_pos, int formals_end_pos, bool* ok) {
switch (arity_restriction) { switch (arity_restriction) {
case FunctionLiteral::GETTER_ARITY: case FunctionLiteral::kGetterArity:
if (param_count != 0) { if (param_count != 0) {
ReportMessageAt(Scanner::Location(formals_start_pos, formals_end_pos), ReportMessageAt(Scanner::Location(formals_start_pos, formals_end_pos),
MessageTemplate::kBadGetterArity); MessageTemplate::kBadGetterArity);
*ok = false; *ok = false;
} }
break; break;
case FunctionLiteral::SETTER_ARITY: case FunctionLiteral::kSetterArity:
if (param_count != 1) { if (param_count != 1) {
ReportMessageAt(Scanner::Location(formals_start_pos, formals_end_pos), ReportMessageAt(Scanner::Location(formals_start_pos, formals_end_pos),
MessageTemplate::kBadSetterArity); MessageTemplate::kBadSetterArity);
@ -3037,7 +3037,7 @@ ParserBase<Traits>::ParseArrowFunctionLiteral(
} else { } else {
body = this->ParseEagerFunctionBody( body = this->ParseEagerFunctionBody(
this->EmptyIdentifier(), RelocInfo::kNoPosition, formal_parameters, this->EmptyIdentifier(), RelocInfo::kNoPosition, formal_parameters,
kArrowFunction, FunctionLiteral::ANONYMOUS_EXPRESSION, CHECK_OK); kArrowFunction, FunctionLiteral::kAnonymousExpression, CHECK_OK);
materialized_literal_count = materialized_literal_count =
function_state.materialized_literal_count(); function_state.materialized_literal_count();
expected_property_count = function_state.expected_property_count(); expected_property_count = function_state.expected_property_count();
@ -3081,11 +3081,10 @@ ParserBase<Traits>::ParseArrowFunctionLiteral(
} }
FunctionLiteralT function_literal = factory()->NewFunctionLiteral( FunctionLiteralT function_literal = factory()->NewFunctionLiteral(
this->EmptyIdentifierString(), ast_value_factory(), this->EmptyIdentifierString(), formal_parameters.scope, body,
formal_parameters.scope, body, materialized_literal_count, materialized_literal_count, expected_property_count, num_parameters,
expected_property_count, num_parameters,
FunctionLiteral::kNoDuplicateParameters, FunctionLiteral::kNoDuplicateParameters,
FunctionLiteral::ANONYMOUS_EXPRESSION, FunctionLiteral::kIsFunction, FunctionLiteral::kAnonymousExpression,
FunctionLiteral::kShouldLazyCompile, FunctionKind::kArrowFunction, FunctionLiteral::kShouldLazyCompile, FunctionKind::kArrowFunction,
formal_parameters.scope->start_position()); formal_parameters.scope->start_position());

View File

@ -236,10 +236,10 @@ FunctionLiteral* Parser::DefaultConstructor(bool call_super, Scope* scope,
} }
FunctionLiteral* function_literal = factory()->NewFunctionLiteral( FunctionLiteral* function_literal = factory()->NewFunctionLiteral(
name, ast_value_factory(), function_scope, body, name, function_scope, body, materialized_literal_count,
materialized_literal_count, expected_property_count, parameter_count, expected_property_count, parameter_count,
FunctionLiteral::kNoDuplicateParameters, FunctionLiteral::kNoDuplicateParameters,
FunctionLiteral::ANONYMOUS_EXPRESSION, FunctionLiteral::kIsFunction, FunctionLiteral::kAnonymousExpression,
FunctionLiteral::kShouldLazyCompile, kind, pos); FunctionLiteral::kShouldLazyCompile, kind, pos);
return function_literal; return function_literal;
@ -947,13 +947,12 @@ FunctionLiteral* Parser::DoParseProgram(ParseInfo* info) {
if (ok) { if (ok) {
ParserTraits::RewriteDestructuringAssignments(); ParserTraits::RewriteDestructuringAssignments();
result = factory()->NewFunctionLiteral( result = factory()->NewFunctionLiteral(
ast_value_factory()->empty_string(), ast_value_factory(), scope_, ast_value_factory()->empty_string(), scope_, body,
body, function_state.materialized_literal_count(), function_state.materialized_literal_count(),
function_state.expected_property_count(), 0, function_state.expected_property_count(), 0,
FunctionLiteral::kNoDuplicateParameters, FunctionLiteral::kNoDuplicateParameters,
FunctionLiteral::ANONYMOUS_EXPRESSION, FunctionLiteral::kGlobalOrEval, FunctionLiteral::kGlobalOrEval, FunctionLiteral::kShouldLazyCompile,
FunctionLiteral::kShouldLazyCompile, FunctionKind::kNormalFunction, FunctionKind::kNormalFunction, 0);
0);
} }
} }
@ -1039,11 +1038,12 @@ FunctionLiteral* Parser::ParseLazy(Isolate* isolate, ParseInfo* info,
DCHECK(is_sloppy(scope->language_mode()) || DCHECK(is_sloppy(scope->language_mode()) ||
is_strict(info->language_mode())); is_strict(info->language_mode()));
DCHECK(info->language_mode() == shared_info->language_mode()); DCHECK(info->language_mode() == shared_info->language_mode());
FunctionLiteral::FunctionType function_type = shared_info->is_expression() FunctionLiteral::FunctionType function_type =
? (shared_info->is_anonymous() shared_info->is_expression()
? FunctionLiteral::ANONYMOUS_EXPRESSION ? (shared_info->is_anonymous()
: FunctionLiteral::NAMED_EXPRESSION) ? FunctionLiteral::kAnonymousExpression
: FunctionLiteral::DECLARATION; : FunctionLiteral::kNamedExpression)
: FunctionLiteral::kDeclaration;
bool ok = true; bool ok = true;
if (shared_info->is_arrow()) { if (shared_info->is_arrow()) {
@ -1105,7 +1105,7 @@ FunctionLiteral* Parser::ParseLazy(Isolate* isolate, ParseInfo* info,
result = ParseFunctionLiteral( result = ParseFunctionLiteral(
raw_name, Scanner::Location::invalid(), kSkipFunctionNameCheck, raw_name, Scanner::Location::invalid(), kSkipFunctionNameCheck,
shared_info->kind(), RelocInfo::kNoPosition, function_type, shared_info->kind(), RelocInfo::kNoPosition, function_type,
FunctionLiteral::NORMAL_ARITY, shared_info->language_mode(), &ok); FunctionLiteral::kNormalArity, shared_info->language_mode(), &ok);
} }
// Make sure the results agree. // Make sure the results agree.
DCHECK(ok == (result != NULL)); DCHECK(ok == (result != NULL));
@ -2110,7 +2110,7 @@ Statement* Parser::ParseFunctionDeclaration(
: kFunctionNameValidityUnknown, : kFunctionNameValidityUnknown,
is_generator ? FunctionKind::kGeneratorFunction is_generator ? FunctionKind::kGeneratorFunction
: FunctionKind::kNormalFunction, : FunctionKind::kNormalFunction,
pos, FunctionLiteral::DECLARATION, FunctionLiteral::NORMAL_ARITY, pos, FunctionLiteral::kDeclaration, FunctionLiteral::kNormalArity,
language_mode(), CHECK_OK); language_mode(), CHECK_OK);
// Even if we're not at the top-level of the global or a function // Even if we're not at the top-level of the global or a function
@ -4111,7 +4111,7 @@ FunctionLiteral* Parser::ParseFunctionLiteral(
// nested function, and hoisting works normally relative to that. // nested function, and hoisting works normally relative to that.
Scope* declaration_scope = scope_->DeclarationScope(); Scope* declaration_scope = scope_->DeclarationScope();
Scope* original_declaration_scope = original_scope_->DeclarationScope(); Scope* original_declaration_scope = original_scope_->DeclarationScope();
Scope* scope = function_type == FunctionLiteral::DECLARATION && Scope* scope = function_type == FunctionLiteral::kDeclaration &&
is_sloppy(language_mode) && is_sloppy(language_mode) &&
!allow_harmony_sloppy_function() && !allow_harmony_sloppy_function() &&
(original_scope_ == original_declaration_scope || (original_scope_ == original_declaration_scope ||
@ -4245,7 +4245,7 @@ FunctionLiteral* Parser::ParseFunctionLiteral(
// - The function literal shouldn't be hinted to eagerly compile. // - The function literal shouldn't be hinted to eagerly compile.
bool use_temp_zone = bool use_temp_zone =
FLAG_lazy && !allow_natives() && extension_ == NULL && allow_lazy() && FLAG_lazy && !allow_natives() && extension_ == NULL && allow_lazy() &&
function_type == FunctionLiteral::DECLARATION && function_type == FunctionLiteral::kDeclaration &&
eager_compile_hint != FunctionLiteral::kShouldEagerCompile; eager_compile_hint != FunctionLiteral::kShouldEagerCompile;
// Open a new BodyScope, which sets our AstNodeFactory to allocate in the // Open a new BodyScope, which sets our AstNodeFactory to allocate in the
// new temporary zone if the preconditions are satisfied, and ensures that // new temporary zone if the preconditions are satisfied, and ensures that
@ -4317,9 +4317,8 @@ FunctionLiteral* Parser::ParseFunctionLiteral(
: FunctionLiteral::kNoDuplicateParameters; : FunctionLiteral::kNoDuplicateParameters;
FunctionLiteral* function_literal = factory()->NewFunctionLiteral( FunctionLiteral* function_literal = factory()->NewFunctionLiteral(
function_name, ast_value_factory(), scope, body, function_name, scope, body, materialized_literal_count,
materialized_literal_count, expected_property_count, arity, expected_property_count, arity, duplicate_parameters, function_type,
duplicate_parameters, function_type, FunctionLiteral::kIsFunction,
eager_compile_hint, kind, pos); eager_compile_hint, kind, pos);
function_literal->set_function_token_position(function_token_pos); function_literal->set_function_token_position(function_token_pos);
if (should_be_used_once_hint) if (should_be_used_once_hint)
@ -4559,7 +4558,7 @@ ZoneList<Statement*>* Parser::ParseEagerFunctionBody(
ZoneList<Statement*>* result = new(zone()) ZoneList<Statement*>(8, zone()); ZoneList<Statement*>* result = new(zone()) ZoneList<Statement*>(8, zone());
static const int kFunctionNameAssignmentIndex = 0; static const int kFunctionNameAssignmentIndex = 0;
if (function_type == FunctionLiteral::NAMED_EXPRESSION) { if (function_type == FunctionLiteral::kNamedExpression) {
DCHECK(function_name != NULL); DCHECK(function_name != NULL);
// If we have a named function expression, we add a local variable // If we have a named function expression, we add a local variable
// declaration to the body of the function with the name of the // declaration to the body of the function with the name of the
@ -4646,7 +4645,7 @@ ZoneList<Statement*>* Parser::ParseEagerFunctionBody(
result->Add(inner_block, zone()); result->Add(inner_block, zone());
} }
if (function_type == FunctionLiteral::NAMED_EXPRESSION) { if (function_type == FunctionLiteral::kNamedExpression) {
// Now that we know the language mode, we can create the const assignment // Now that we know the language mode, we can create the const assignment
// in the previously reserved spot. // in the previously reserved spot.
// NOTE: We create a proxy and resolve it here so that in the // NOTE: We create a proxy and resolve it here so that in the

View File

@ -451,8 +451,8 @@ PreParser::Statement PreParser::ParseFunctionDeclaration(bool* ok) {
: kFunctionNameValidityUnknown, : kFunctionNameValidityUnknown,
is_generator ? FunctionKind::kGeneratorFunction is_generator ? FunctionKind::kGeneratorFunction
: FunctionKind::kNormalFunction, : FunctionKind::kNormalFunction,
pos, FunctionLiteral::DECLARATION, pos, FunctionLiteral::kDeclaration,
FunctionLiteral::NORMAL_ARITY, language_mode(), FunctionLiteral::kNormalArity, language_mode(),
CHECK_OK); CHECK_OK);
return Statement::FunctionDeclaration(); return Statement::FunctionDeclaration();
} }

View File

@ -540,12 +540,11 @@ class PreParserFactory {
return PreParserStatement::Default(); return PreParserStatement::Default();
} }
PreParserExpression NewFunctionLiteral( PreParserExpression NewFunctionLiteral(
PreParserIdentifier name, AstValueFactory* ast_value_factory, PreParserIdentifier name, Scope* scope, PreParserStatementList body,
Scope* scope, PreParserStatementList body, int materialized_literal_count, int materialized_literal_count, int expected_property_count,
int expected_property_count, int parameter_count, int parameter_count,
FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionLiteral::ParameterFlag has_duplicate_parameters,
FunctionLiteral::FunctionType function_type, FunctionLiteral::FunctionType function_type,
FunctionLiteral::IsFunctionFlag is_function,
FunctionLiteral::EagerCompileHint eager_compile_hint, FunctionKind kind, FunctionLiteral::EagerCompileHint eager_compile_hint, FunctionKind kind,
int position) { int position) {
return PreParserExpression::Default(); return PreParserExpression::Default();