/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 42 int expected_property_count = 0; in DefaultConstructor() local 80 expected_property_count = function_state.expected_property_count(); in DefaultConstructor() 84 name, function_scope, body, expected_property_count, parameter_count, in DefaultConstructor() 687 scope, body, function_state.expected_property_count(), parameter_count); in DoParseProgram() 2726 int expected_property_count = 0; in ParseFunctionLiteral() local 2767 &expected_property_count, &suspend_count, in ParseFunctionLiteral() 2808 function_name, scope, body, expected_property_count, num_parameters, in ParseFunctionLiteral() 3034 bool* has_duplicate_parameters, int* expected_property_count, in ParseFunction() 3109 *expected_property_count in ParseFunction() 3030 ParseFunction( ScopedPtrList<Statement>* body, const AstRawString* function_name, int pos, FunctionKind kind, FunctionSyntaxKind function_syntax_kind, DeclarationScope* function_scope, int* num_parameters, int* function_length, bool* has_duplicate_parameters, int* expected_property_count, int* suspend_count, ZonePtrList<const AstRawString>* arguments_for_wrapped_function) ParseFunction() argument [all...] |
H A D | parser-base.h | 440 int expected_property_count() { return expected_property_count_; } in expected_property_count() function in v8::internal::ParseFunctionFlag::ParserBase::final 4522 int expected_property_count = 0; in ParseArrowFunctionLiteral() local 4616 expected_property_count = function_state.expected_property_count(); in ParseArrowFunctionLiteral() 4626 expected_property_count = function_state.expected_property_count(); in ParseArrowFunctionLiteral() 4641 expected_property_count, formal_parameters.num_parameters(), in ParseArrowFunctionLiteral()
|
H A D | parser.h | 462 int* expected_property_count, int* suspend_count,
|
H A D | preparser.h | 679 const PreParserScopedStatementList& body, int expected_property_count, in NewFunctionLiteral() 677 NewFunctionLiteral( const PreParserIdentifier& name, Scope* scope, const PreParserScopedStatementList& body, int expected_property_count, int parameter_count, int function_length, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionSyntaxKind function_syntax_kind, FunctionLiteral::EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) NewFunctionLiteral() argument
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 2194 int expected_property_count() { return expected_property_count_; } in expected_property_count() function in v8::internal::final 2310 int expected_property_count, int parameter_count, in FunctionLiteral() 2317 expected_property_count_(expected_property_count), in FunctionLiteral() 3224 const ScopedPtrList<Statement>& body, int expected_property_count, in NewFunctionLiteral() 3233 ast_value_factory_, scope, body, expected_property_count, in NewFunctionLiteral() 3244 int expected_property_count, int parameter_count) { in NewScriptOrEvalFunctionLiteral() 3247 scope, body, expected_property_count, parameter_count, parameter_count, in NewScriptOrEvalFunctionLiteral() 2307 FunctionLiteral(Zone* zone, const AstConsString* name, AstValueFactory* ast_value_factory, DeclarationScope* scope, const ScopedPtrList<Statement>& body, int expected_property_count, int parameter_count, int function_length, FunctionSyntaxKind function_syntax_kind, ParameterFlag has_duplicate_parameters, EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) FunctionLiteral() argument 3222 NewFunctionLiteral( const AstRawString* name, DeclarationScope* scope, const ScopedPtrList<Statement>& body, int expected_property_count, int parameter_count, int function_length, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionSyntaxKind function_syntax_kind, FunctionLiteral::EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) NewFunctionLiteral() argument 3242 NewScriptOrEvalFunctionLiteral( DeclarationScope* scope, const ScopedPtrList<Statement>& body, int expected_property_count, int parameter_count) NewScriptOrEvalFunctionLiteral() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | shared-function-info.cc | 590 int estimate = literal->expected_property_count(); in get_property_estimate_from_literal()
|