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

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

Issue 10446102: Insert closure calls in conditional expression of assert (issue 1584). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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/ast.h ('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 "vm/ast.h" 10 #include "vm/ast.h"
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 String& Interpolate(ArrayNode* values); 479 String& Interpolate(ArrayNode* values);
480 AstNode* MakeAssertCall(intptr_t begin, intptr_t end); 480 AstNode* MakeAssertCall(intptr_t begin, intptr_t end);
481 AstNode* ThrowTypeError(intptr_t type_pos, const AbstractType& type); 481 AstNode* ThrowTypeError(intptr_t type_pos, const AbstractType& type);
482 482
483 void CheckFunctionIsCallable(intptr_t token_index, const Function& function); 483 void CheckFunctionIsCallable(intptr_t token_index, const Function& function);
484 void CheckOperatorArity(const MemberDesc& member, Token::Kind operator_token); 484 void CheckOperatorArity(const MemberDesc& member, Token::Kind operator_token);
485 485
486 const LocalVariable& GetIncrementTempLocal(); 486 const LocalVariable& GetIncrementTempLocal();
487 void EnsureExpressionTemp(); 487 void EnsureExpressionTemp();
488 AstNode* CreateAssignmentNode(AstNode* original, AstNode* rhs); 488 AstNode* CreateAssignmentNode(AstNode* original, AstNode* rhs);
489 AstNode* InsertClosureCallNodes(AstNode* condition);
489 490
490 ConstructorCallNode* CreateConstructorCallNode( 491 ConstructorCallNode* CreateConstructorCallNode(
491 intptr_t token_index, 492 intptr_t token_index,
492 const AbstractTypeArguments& type_arguments, 493 const AbstractTypeArguments& type_arguments,
493 const Function& constructor, 494 const Function& constructor,
494 ArgumentListNode* arguments); 495 ArgumentListNode* arguments);
495 496
496 497
497 const Script& script_; 498 const Script& script_;
498 const TokenStream& tokens_; 499 const TokenStream& tokens_;
(...skipping 30 matching lines...) Expand all
529 530
530 // Allocate temporary only once per function. 531 // Allocate temporary only once per function.
531 LocalVariable* expression_temp_; 532 LocalVariable* expression_temp_;
532 533
533 DISALLOW_COPY_AND_ASSIGN(Parser); 534 DISALLOW_COPY_AND_ASSIGN(Parser);
534 }; 535 };
535 536
536 } // namespace dart 537 } // namespace dart
537 538
538 #endif // VM_PARSER_H_ 539 #endif // VM_PARSER_H_
OLDNEW
« no previous file with comments | « runtime/vm/ast.h ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698