Home
last modified time | relevance | path

Searched defs:FormalParametersBase (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/parsing/
Dparser-base.h60 struct FormalParametersBase { struct
61 explicit FormalParametersBase(DeclarationScope* scope) : scope(scope) {} in FormalParametersBase() function
63 int num_parameters() const { in num_parameters()
70 void UpdateArityAndFunctionLength(bool is_optional, bool is_rest) { in UpdateArityAndFunctionLength()
77 DeclarationScope* scope;
78 bool has_rest = false;
79 bool is_simple = true;
80 int materialized_literals_count = 0;
81 int function_length = 0;
82 int arity = 0;