Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(728)

Side by Side Diff: runtime/vm/parser.h

Issue 188703004: Fix invocation of closures via .call in the VM (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "platform/assert.h" 10 #include "platform/assert.h"
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 443
444 SequenceNode* ParseInstanceGetter(const Function& func); 444 SequenceNode* ParseInstanceGetter(const Function& func);
445 SequenceNode* ParseInstanceSetter(const Function& func); 445 SequenceNode* ParseInstanceSetter(const Function& func);
446 SequenceNode* ParseStaticFinalGetter(const Function& func); 446 SequenceNode* ParseStaticFinalGetter(const Function& func);
447 SequenceNode* ParseStaticInitializer(const Function& func); 447 SequenceNode* ParseStaticInitializer(const Function& func);
448 SequenceNode* ParseMethodExtractor(const Function& func); 448 SequenceNode* ParseMethodExtractor(const Function& func);
449 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func, 449 SequenceNode* ParseNoSuchMethodDispatcher(const Function& func,
450 Array& default_values); 450 Array& default_values);
451 SequenceNode* ParseInvokeFieldDispatcher(const Function& func, 451 SequenceNode* ParseInvokeFieldDispatcher(const Function& func,
452 Array& default_values); 452 Array& default_values);
453 SequenceNode* ParseInvokeClosureDispatcher(const Function& func,
454 Array& default_values);
453 void BuildDispatcherScope(const Function& func, 455 void BuildDispatcherScope(const Function& func,
454 const ArgumentsDescriptor& desc, 456 const ArgumentsDescriptor& desc,
455 Array& default_values); 457 Array& default_values);
456 458
457 void ChainNewBlock(LocalScope* outer_scope); 459 void ChainNewBlock(LocalScope* outer_scope);
458 void OpenBlock(); 460 void OpenBlock();
459 void OpenLoopBlock(); 461 void OpenLoopBlock();
460 void OpenFunctionBlock(const Function& func); 462 void OpenFunctionBlock(const Function& func);
461 SequenceNode* CloseBlock(); 463 SequenceNode* CloseBlock();
462 464
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 intptr_t last_used_try_index_; 708 intptr_t last_used_try_index_;
707 709
708 bool unregister_pending_function_; 710 bool unregister_pending_function_;
709 711
710 DISALLOW_COPY_AND_ASSIGN(Parser); 712 DISALLOW_COPY_AND_ASSIGN(Parser);
711 }; 713 };
712 714
713 } // namespace dart 715 } // namespace dart
714 716
715 #endif // VM_PARSER_H_ 717 #endif // VM_PARSER_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698