Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/parsing/
Dparser-base.h60 struct FormalParametersBase { struct
61 explicit FormalParametersBase(DeclarationScope* scope) : scope(scope) {} in FormalParametersBase() argument
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 function_length = 0;
81 int arity = 0;