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

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

Issue 17361004: Move FiftythreeBitOverflowError to VM-only patch file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding rationale to error test. Created 7 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/lib/errors_patch.dart ('k') | sdk/lib/core/errors.dart » ('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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 V(RangeError, "RangeError") \ 219 V(RangeError, "RangeError") \
220 V(ArgumentError, "ArgumentError") \ 220 V(ArgumentError, "ArgumentError") \
221 V(FormatException, "FormatException") \ 221 V(FormatException, "FormatException") \
222 V(UnsupportedError, "UnsupportedError") \ 222 V(UnsupportedError, "UnsupportedError") \
223 V(StackOverflowError, "StackOverflowError") \ 223 V(StackOverflowError, "StackOverflowError") \
224 V(OutOfMemoryError, "OutOfMemoryError") \ 224 V(OutOfMemoryError, "OutOfMemoryError") \
225 V(InternalError, "InternalError") \ 225 V(InternalError, "InternalError") \
226 V(NullThrownError, "NullThrownError") \ 226 V(NullThrownError, "NullThrownError") \
227 V(IsolateSpawnException, "IsolateSpawnException") \ 227 V(IsolateSpawnException, "IsolateSpawnException") \
228 V(IsolateUnhandledException, "IsolateUnhandledException") \ 228 V(IsolateUnhandledException, "IsolateUnhandledException") \
229 V(FiftyThreeBitOverflowError, "FiftyThreeBitOverflowError") \ 229 V(FiftyThreeBitOverflowError, "_FiftyThreeBitOverflowError") \
230 V(_setupFullStackTrace, "_setupFullStackTrace") \ 230 V(_setupFullStackTrace, "_setupFullStackTrace") \
231 V(BooleanExpression, "boolean expression") \ 231 V(BooleanExpression, "boolean expression") \
232 V(Malformed, "malformed") \ 232 V(Malformed, "malformed") \
233 V(InstanceOf, "InstanceOf") \ 233 V(InstanceOf, "InstanceOf") \
234 V(MegamorphicMiss, "megamorphic_miss") \ 234 V(MegamorphicMiss, "megamorphic_miss") \
235 V(CommaSpace, ", ") \ 235 V(CommaSpace, ", ") \
236 V(ColonSpace, ": ") \ 236 V(ColonSpace, ": ") \
237 V(RParenArrow, ") => ") \ 237 V(RParenArrow, ") => ") \
238 V(SpaceExtendsSpace, " extends ") \ 238 V(SpaceExtendsSpace, " extends ") \
239 V(SwitchExpr, ":switch_expr") \ 239 V(SwitchExpr, ":switch_expr") \
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 friend class SnapshotReader; 460 friend class SnapshotReader;
461 friend class SnapshotWriter; 461 friend class SnapshotWriter;
462 friend class ApiMessageReader; 462 friend class ApiMessageReader;
463 463
464 DISALLOW_COPY_AND_ASSIGN(Symbols); 464 DISALLOW_COPY_AND_ASSIGN(Symbols);
465 }; 465 };
466 466
467 } // namespace dart 467 } // namespace dart
468 468
469 #endif // VM_SYMBOLS_H_ 469 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/lib/errors_patch.dart ('k') | sdk/lib/core/errors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698