Lines Matching refs:ZoneList
320 ZoneList<Parameter> params;
346 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
347 typedef ZoneList<ObjectLiteral::Property*>* PropertyList;
350 typedef ZoneList<v8::internal::Statement*>* StatementList;
492 static ZoneList<Expression*>* NullExpressionList() {
527 ZoneList<v8::internal::Expression*>* NewExpressionList(int size, Zone* zone) {
528 return new(zone) ZoneList<v8::internal::Expression*>(size, zone);
530 ZoneList<ObjectLiteral::Property*>* NewPropertyList(int size, Zone* zone) {
531 return new(zone) ZoneList<ObjectLiteral::Property*>(size, zone);
533 ZoneList<v8::internal::Statement*>* NewStatementList(int size, Zone* zone) {
534 return new(zone) ZoneList<v8::internal::Statement*>(size, zone);
539 ZoneList<v8::internal::Statement*>* body, bool* ok);
575 V8_INLINE ZoneList<Statement*>* ParseEagerFunctionBody(
593 const ZoneList<Expression*>* cooked() const { return &cooked_; }
594 const ZoneList<Expression*>* raw() const { return &raw_; }
595 const ZoneList<Expression*>* expressions() const { return &expressions_; }
611 ZoneList<Expression*> cooked_;
612 ZoneList<Expression*> raw_;
613 ZoneList<Expression*> expressions_;
630 V8_INLINE ZoneList<v8::internal::Expression*>* PrepareSpreadArguments(
631 ZoneList<v8::internal::Expression*>* list);
634 ZoneList<v8::internal::Expression*>* args,
637 ZoneList<v8::internal::Expression*>* args,
655 V8_INLINE ZoneList<Expression*>* RewriteNonPatternArguments(
656 ZoneList<Expression*>* args, const ExpressionClassifier* classifier,
728 void* ParseStatementList(ZoneList<Statement*>* body, int end_token, bool* ok);
730 void* ParseModuleItemList(ZoneList<Statement*>* body, bool* ok);
736 void* ParseExportClause(ZoneList<const AstRawString*>* export_names,
737 ZoneList<Scanner::Location>* export_locations,
738 ZoneList<const AstRawString*>* local_names,
740 ZoneList<ImportDeclaration*>* ParseNamedImports(int pos, bool* ok);
741 Statement* ParseStatement(ZoneList<const AstRawString*>* labels, bool* ok);
742 Statement* ParseSubStatement(ZoneList<const AstRawString*>* labels, bool* ok);
743 Statement* ParseStatementAsUnlabelled(ZoneList<const AstRawString*>* labels,
745 Statement* ParseFunctionDeclaration(ZoneList<const AstRawString*>* names,
747 Statement* ParseClassDeclaration(ZoneList<const AstRawString*>* names,
750 Block* ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok);
751 Block* ParseBlock(ZoneList<const AstRawString*>* labels,
754 ZoneList<const AstRawString*>* names,
788 Block* BuildInitializationBlock(ZoneList<const AstRawString*>* names,
802 ZoneList<const AstRawString*>* names, bool* ok);
869 ZoneList<const AstRawString*>* names_;
880 ZoneList<const AstRawString*>* labels, bool* ok);
881 IfStatement* ParseIfStatement(ZoneList<const AstRawString*>* labels,
884 Statement* ParseBreakStatement(ZoneList<const AstRawString*>* labels,
887 Statement* ParseWithStatement(ZoneList<const AstRawString*>* labels,
890 Statement* ParseSwitchStatement(ZoneList<const AstRawString*>* labels,
892 DoWhileStatement* ParseDoWhileStatement(ZoneList<const AstRawString*>* labels,
894 WhileStatement* ParseWhileStatement(ZoneList<const AstRawString*>* labels,
896 Statement* ParseForStatement(ZoneList<const AstRawString*>* labels, bool* ok);
913 Scope* inner_scope, bool is_const, ZoneList<const AstRawString*>* names,
989 ZoneList<Statement*>* ParseEagerFunctionBody(
1004 ZoneList<v8::internal::Expression*>* PrepareSpreadArguments(
1005 ZoneList<v8::internal::Expression*>* list);
1007 ZoneList<v8::internal::Expression*>* args, int pos);
1009 ZoneList<v8::internal::Expression*>* args, int pos);
1018 V8_INLINE ZoneList<Expression*>* RewriteNonPatternArguments(
1019 ZoneList<Expression*>* args, const ExpressionClassifier* classifier,
1072 ZoneList<Statement*>* ParserTraits::ParseEagerFunctionBody(
1137 ZoneList<v8::internal::Expression*>* ParserTraits::PrepareSpreadArguments(
1138 ZoneList<v8::internal::Expression*>* list) {
1144 ZoneList<v8::internal::Expression*>* args,
1151 Expression* function, ZoneList<v8::internal::Expression*>* args, int pos) {
1200 ZoneList<v8::internal::Statement*>* body, bool* ok) {