| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_PARSER_H_ | 5 #ifndef VM_PARSER_H_ |
| 6 #define VM_PARSER_H_ | 6 #define VM_PARSER_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 | 9 |
| 10 #include "lib/invocation_mirror.h" | 10 #include "lib/invocation_mirror.h" |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 void SkipInitializers(); | 289 void SkipInitializers(); |
| 290 void SkipExpr(); | 290 void SkipExpr(); |
| 291 void SkipNestedExpr(); | 291 void SkipNestedExpr(); |
| 292 void SkipConditionalExpr(); | 292 void SkipConditionalExpr(); |
| 293 void SkipBinaryExpr(); | 293 void SkipBinaryExpr(); |
| 294 void SkipUnaryExpr(); | 294 void SkipUnaryExpr(); |
| 295 void SkipPostfixExpr(); | 295 void SkipPostfixExpr(); |
| 296 void SkipSelectors(); | 296 void SkipSelectors(); |
| 297 void SkipPrimary(); | 297 void SkipPrimary(); |
| 298 void SkipCompoundLiteral(); | 298 void SkipCompoundLiteral(); |
| 299 void SkipSymbolLiteral(); |
| 299 void SkipNewOperator(); | 300 void SkipNewOperator(); |
| 300 void SkipActualParameters(); | 301 void SkipActualParameters(); |
| 301 void SkipMapLiteral(); | 302 void SkipMapLiteral(); |
| 302 void SkipListLiteral(); | 303 void SkipListLiteral(); |
| 303 void SkipFunctionLiteral(); | 304 void SkipFunctionLiteral(); |
| 304 void SkipStringLiteral(); | 305 void SkipStringLiteral(); |
| 305 void SkipQualIdent(); | 306 void SkipQualIdent(); |
| 306 void SkipFunctionPreamble(); | 307 void SkipFunctionPreamble(); |
| 307 | 308 |
| 308 void CheckConstructorCallTypeArguments( | 309 void CheckConstructorCallTypeArguments( |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 intptr_t last_used_try_index_; | 712 intptr_t last_used_try_index_; |
| 712 | 713 |
| 713 bool unregister_pending_function_; | 714 bool unregister_pending_function_; |
| 714 | 715 |
| 715 DISALLOW_COPY_AND_ASSIGN(Parser); | 716 DISALLOW_COPY_AND_ASSIGN(Parser); |
| 716 }; | 717 }; |
| 717 | 718 |
| 718 } // namespace dart | 719 } // namespace dart |
| 719 | 720 |
| 720 #endif // VM_PARSER_H_ | 721 #endif // VM_PARSER_H_ |
| OLD | NEW |