| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 | 428 |
| 429 SequenceNode* ParseConstructor(const Function& func, | 429 SequenceNode* ParseConstructor(const Function& func, |
| 430 Array& default_parameter_values); | 430 Array& default_parameter_values); |
| 431 SequenceNode* ParseFunc(const Function& func, | 431 SequenceNode* ParseFunc(const Function& func, |
| 432 Array& default_parameter_values); | 432 Array& default_parameter_values); |
| 433 | 433 |
| 434 void ParseNativeFunctionBlock(const ParamList* params, const Function& func); | 434 void ParseNativeFunctionBlock(const ParamList* params, const Function& func); |
| 435 | 435 |
| 436 SequenceNode* ParseInstanceGetter(const Function& func); | 436 SequenceNode* ParseInstanceGetter(const Function& func); |
| 437 SequenceNode* ParseInstanceSetter(const Function& func); | 437 SequenceNode* ParseInstanceSetter(const Function& func); |
| 438 SequenceNode* ParseStaticConstGetter(const Function& func); | 438 SequenceNode* ParseStaticFinalGetter(const Function& func); |
| 439 SequenceNode* ParseMethodExtractor(const Function& func); | 439 SequenceNode* ParseMethodExtractor(const Function& func); |
| 440 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func, | 440 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func, |
| 441 Array& default_values); | 441 Array& default_values); |
| 442 SequenceNode* ParseInvokeFieldDispatcher(const Function& func, | 442 SequenceNode* ParseInvokeFieldDispatcher(const Function& func, |
| 443 Array& default_values); | 443 Array& default_values); |
| 444 void BuildDispatcherScope(const Function& func, | 444 void BuildDispatcherScope(const Function& func, |
| 445 const ArgumentsDescriptor& desc, | 445 const ArgumentsDescriptor& desc, |
| 446 Array& default_values); | 446 Array& default_values); |
| 447 | 447 |
| 448 void ChainNewBlock(LocalScope* outer_scope); | 448 void ChainNewBlock(LocalScope* outer_scope); |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 // code at all points in the try block where an exit from the block is | 686 // code at all points in the try block where an exit from the block is |
| 687 // done using 'return', 'break' or 'continue' statements. | 687 // done using 'return', 'break' or 'continue' statements. |
| 688 TryBlocks* try_blocks_list_; | 688 TryBlocks* try_blocks_list_; |
| 689 | 689 |
| 690 DISALLOW_COPY_AND_ASSIGN(Parser); | 690 DISALLOW_COPY_AND_ASSIGN(Parser); |
| 691 }; | 691 }; |
| 692 | 692 |
| 693 } // namespace dart | 693 } // namespace dart |
| 694 | 694 |
| 695 #endif // VM_PARSER_H_ | 695 #endif // VM_PARSER_H_ |
| OLD | NEW |