HomeSort by relevance Sort by last modified time
    Searched full:is_rest (Results 1 - 6 of 6) sorted by null

  /external/v8/src/parsing/
parser.h 144 bool is_rest)
149 is_rest(is_rest) {}
154 bool is_rest; member in struct:v8::internal::ParserFormalParameters::Parameter
157 return pattern->IsVariableProxy() && initializer == nullptr && !is_rest;
161 DCHECK_IMPLIES(is_rest, initializer == nullptr);
162 return is_rest && pattern->IsVariableProxy();
    [all...]
preparser.h 794 Parameter(PreParserExpression pattern, bool is_destructuring, bool is_rest)
797 is_rest(is_rest) {}
802 return is_rest && !is_destructuring;
807 bool is_rest : 1; member in struct:v8::internal::PreParserFormalParameters::Parameter
    [all...]
parser.cc 191 bool is_rest = true; local
194 constructor_args_name, TEMPORARY, is_optional, is_rest, &is_duplicate,
693 bool is_rest = false; local
695 auto var = scope->DeclareParameter(name, VAR, is_optional, is_rest,
2441 bool is_rest = expr->IsSpread(); local
    [all...]
parser-base.h 71 void UpdateArityAndFunctionLength(bool is_optional, bool is_rest) {
72 if (!is_optional && !is_rest && function_length == arity) {
3552 bool is_rest = parameters->has_rest; local
    [all...]
  /external/v8/src/ast/
scopes.cc     [all...]
scopes.h 694 bool is_optional, bool is_rest, bool* is_duplicate,
699 Variable* DeclareParameterName(const AstRawString* name, bool is_rest,
    [all...]

Completed in 845 milliseconds