| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_PARSER_H_ | 5 #ifndef V8_PARSER_H_ |
| 6 #define V8_PARSER_H_ | 6 #define V8_PARSER_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/ast.h" | 9 #include "src/ast.h" |
| 10 #include "src/compiler.h" // For CachedDataMode | 10 #include "src/compiler.h" // For CachedDataMode |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 ? scope_ : scope_->DeclarationScope(); | 697 ? scope_ : scope_->DeclarationScope(); |
| 698 } | 698 } |
| 699 | 699 |
| 700 // All ParseXXX functions take as the last argument an *ok parameter | 700 // All ParseXXX functions take as the last argument an *ok parameter |
| 701 // which is set to false if parsing failed; it is unchanged otherwise. | 701 // which is set to false if parsing failed; it is unchanged otherwise. |
| 702 // By making the 'exception handling' explicit, we are forced to check | 702 // By making the 'exception handling' explicit, we are forced to check |
| 703 // for failure at the call sites. | 703 // for failure at the call sites. |
| 704 void* ParseStatementList(ZoneList<Statement*>* body, int end_token, | 704 void* ParseStatementList(ZoneList<Statement*>* body, int end_token, |
| 705 bool is_eval, Scope** ad_hoc_eval_scope, bool* ok); | 705 bool is_eval, Scope** ad_hoc_eval_scope, bool* ok); |
| 706 Statement* ParseStatementListItem(bool* ok); | 706 Statement* ParseStatementListItem(bool* ok); |
| 707 void* ParseModule(ZoneList<Statement*>* body, bool* ok); | 707 void* ParseModuleItemList(ZoneList<Statement*>* body, bool* ok); |
| 708 Statement* ParseModuleItem(bool* ok); | 708 Statement* ParseModuleItem(bool* ok); |
| 709 Literal* ParseModuleSpecifier(bool* ok); | 709 Literal* ParseModuleSpecifier(bool* ok); |
| 710 Statement* ParseImportDeclaration(bool* ok); | 710 Statement* ParseImportDeclaration(bool* ok); |
| 711 Statement* ParseExportDeclaration(bool* ok); | 711 Statement* ParseExportDeclaration(bool* ok); |
| 712 Statement* ParseExportDefault(bool* ok); | 712 Statement* ParseExportDefault(bool* ok); |
| 713 void* ParseExportClause(ZoneList<const AstRawString*>* export_names, | 713 void* ParseExportClause(ZoneList<const AstRawString*>* export_names, |
| 714 ZoneList<Scanner::Location>* export_locations, | 714 ZoneList<Scanner::Location>* export_locations, |
| 715 ZoneList<const AstRawString*>* local_names, | 715 ZoneList<const AstRawString*>* local_names, |
| 716 Scanner::Location* reserved_loc, bool* ok); | 716 Scanner::Location* reserved_loc, bool* ok); |
| 717 void* ParseNamedImports(ZoneList<const AstRawString*>* import_names, | 717 void* ParseNamedImports(ZoneList<const AstRawString*>* import_names, |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 } | 941 } |
| 942 | 942 |
| 943 | 943 |
| 944 Expression* ParserTraits::CloseTemplateLiteral(TemplateLiteralState* state, | 944 Expression* ParserTraits::CloseTemplateLiteral(TemplateLiteralState* state, |
| 945 int start, Expression* tag) { | 945 int start, Expression* tag) { |
| 946 return parser_->CloseTemplateLiteral(state, start, tag); | 946 return parser_->CloseTemplateLiteral(state, start, tag); |
| 947 } | 947 } |
| 948 } } // namespace v8::internal | 948 } } // namespace v8::internal |
| 949 | 949 |
| 950 #endif // V8_PARSER_H_ | 950 #endif // V8_PARSER_H_ |
| OLD | NEW |