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

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

Issue 23531075: Properly parse symbol literals in top-level expression (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 | « no previous file | 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 "lib/invocation_mirror.h" 10 #include "lib/invocation_mirror.h"
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698