Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dparser-base.h66 struct FormalParametersBase { struct
67 explicit FormalParametersBase(DeclarationScope* scope) : scope(scope) {} in FormalParametersBase() function
69 int num_parameters() const { in num_parameters()
76 void UpdateArityAndFunctionLength(bool is_optional, bool is_rest) { in UpdateArityAndFunctionLength()
83 DeclarationScope* scope;
84 bool has_rest = false;
85 bool is_simple = true;
86 int function_length = 0;
87 int arity = 0;