| 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 SequenceNode* ParseConstructor(const Function& func, | 457 SequenceNode* ParseConstructor(const Function& func, |
| 458 Array& default_parameter_values); | 458 Array& default_parameter_values); |
| 459 SequenceNode* ParseFunc(const Function& func, | 459 SequenceNode* ParseFunc(const Function& func, |
| 460 Array& default_parameter_values); | 460 Array& default_parameter_values); |
| 461 | 461 |
| 462 void ParseNativeFunctionBlock(const ParamList* params, const Function& func); | 462 void ParseNativeFunctionBlock(const ParamList* params, const Function& func); |
| 463 | 463 |
| 464 SequenceNode* ParseInstanceGetter(const Function& func); | 464 SequenceNode* ParseInstanceGetter(const Function& func); |
| 465 SequenceNode* ParseInstanceSetter(const Function& func); | 465 SequenceNode* ParseInstanceSetter(const Function& func); |
| 466 SequenceNode* ParseStaticFinalGetter(const Function& func); | 466 SequenceNode* ParseStaticFinalGetter(const Function& func); |
| 467 SequenceNode* ParseStaticInitializer(const Function& func); |
| 467 SequenceNode* ParseMethodExtractor(const Function& func); | 468 SequenceNode* ParseMethodExtractor(const Function& func); |
| 468 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func, | 469 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func, |
| 469 Array& default_values); | 470 Array& default_values); |
| 470 SequenceNode* ParseInvokeFieldDispatcher(const Function& func, | 471 SequenceNode* ParseInvokeFieldDispatcher(const Function& func, |
| 471 Array& default_values); | 472 Array& default_values); |
| 472 void BuildDispatcherScope(const Function& func, | 473 void BuildDispatcherScope(const Function& func, |
| 473 const ArgumentsDescriptor& desc, | 474 const ArgumentsDescriptor& desc, |
| 474 Array& default_values); | 475 Array& default_values); |
| 475 | 476 |
| 476 void ChainNewBlock(LocalScope* outer_scope); | 477 void ChainNewBlock(LocalScope* outer_scope); |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 intptr_t last_used_try_index_; | 720 intptr_t last_used_try_index_; |
| 720 | 721 |
| 721 bool unregister_pending_function_; | 722 bool unregister_pending_function_; |
| 722 | 723 |
| 723 DISALLOW_COPY_AND_ASSIGN(Parser); | 724 DISALLOW_COPY_AND_ASSIGN(Parser); |
| 724 }; | 725 }; |
| 725 | 726 |
| 726 } // namespace dart | 727 } // namespace dart |
| 727 | 728 |
| 728 #endif // VM_PARSER_H_ | 729 #endif // VM_PARSER_H_ |
| OLD | NEW |