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

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

Issue 53583003: Implement latest spec changes regarding malformed types (see issue 14006): (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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/parser.cc ('k') | tests/co19/co19-runtime.status » ('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_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 V(OutOfMemoryError, "OutOfMemoryError") \ 234 V(OutOfMemoryError, "OutOfMemoryError") \
235 V(InternalError, "InternalError") \ 235 V(InternalError, "InternalError") \
236 V(NullThrownError, "NullThrownError") \ 236 V(NullThrownError, "NullThrownError") \
237 V(IsolateSpawnException, "IsolateSpawnException") \ 237 V(IsolateSpawnException, "IsolateSpawnException") \
238 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 238 V(IsolateUnhandledException, "_IsolateUnhandledException") \
239 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 239 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
240 V(MirroredCompilationError, "MirroredCompilationError") \ 240 V(MirroredCompilationError, "MirroredCompilationError") \
241 V(_setupFullStackTrace, "_setupFullStackTrace") \ 241 V(_setupFullStackTrace, "_setupFullStackTrace") \
242 V(BooleanExpression, "boolean expression") \ 242 V(BooleanExpression, "boolean expression") \
243 V(Malformed, "malformed") \ 243 V(Malformed, "malformed") \
244 V(Malbounded, "malbounded") \
244 V(InstanceOf, "InstanceOf") \ 245 V(InstanceOf, "InstanceOf") \
245 V(MegamorphicMiss, "megamorphic_miss") \ 246 V(MegamorphicMiss, "megamorphic_miss") \
246 V(CommaSpace, ", ") \ 247 V(CommaSpace, ", ") \
247 V(ColonSpace, ": ") \ 248 V(ColonSpace, ": ") \
248 V(RParenArrow, ") => ") \ 249 V(RParenArrow, ") => ") \
249 V(SpaceExtendsSpace, " extends ") \ 250 V(SpaceExtendsSpace, " extends ") \
250 V(SwitchExpr, ":switch_expr") \ 251 V(SwitchExpr, ":switch_expr") \
251 V(TwoNewlines, "\n\n") \ 252 V(TwoNewlines, "\n\n") \
252 V(TwoSpaces, " ") \ 253 V(TwoSpaces, " ") \
253 V(_instanceOf, "_instanceOf") \ 254 V(_instanceOf, "_instanceOf") \
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 friend class SnapshotReader; 489 friend class SnapshotReader;
489 friend class SnapshotWriter; 490 friend class SnapshotWriter;
490 friend class ApiMessageReader; 491 friend class ApiMessageReader;
491 492
492 DISALLOW_COPY_AND_ASSIGN(Symbols); 493 DISALLOW_COPY_AND_ASSIGN(Symbols);
493 }; 494 };
494 495
495 } // namespace dart 496 } // namespace dart
496 497
497 #endif // VM_SYMBOLS_H_ 498 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/co19/co19-runtime.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698