Home
last modified time | relevance | path

Searched refs:call_super (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/parsing/
Dparser.h516 Expression* DefaultConstructor(bool call_super, Scope* scope, int pos,
969 FunctionLiteral* DefaultConstructor(bool call_super, Scope* scope, int pos,
Dparser.cc182 FunctionLiteral* Parser::DefaultConstructor(bool call_super, Scope* scope, in DefaultConstructor() argument
191 FunctionKind kind = call_super ? FunctionKind::kDefaultSubclassConstructor in DefaultConstructor()
206 body = new (zone()) ZoneList<Statement*>(call_super ? 2 : 1, zone()); in DefaultConstructor()
207 if (call_super) { in DefaultConstructor()
645 Expression* ParserTraits::DefaultConstructor(bool call_super, Scope* scope, in DefaultConstructor() argument
648 return parser_->DefaultConstructor(call_super, scope, pos, end_pos, mode); in DefaultConstructor()
Dpreparser.h800 static PreParserExpression DefaultConstructor(bool call_super, Scope* scope, in DefaultConstructor() argument