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

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

Issue 15743017: Adds a flag to the standalone vm to throw an exception on 53-bit integer overflow. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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/vm/object.cc ('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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 V(RangeError, "RangeError") \ 217 V(RangeError, "RangeError") \
218 V(ArgumentError, "ArgumentError") \ 218 V(ArgumentError, "ArgumentError") \
219 V(FormatException, "FormatException") \ 219 V(FormatException, "FormatException") \
220 V(UnsupportedError, "UnsupportedError") \ 220 V(UnsupportedError, "UnsupportedError") \
221 V(StackOverflowError, "StackOverflowError") \ 221 V(StackOverflowError, "StackOverflowError") \
222 V(OutOfMemoryError, "OutOfMemoryError") \ 222 V(OutOfMemoryError, "OutOfMemoryError") \
223 V(InternalError, "InternalError") \ 223 V(InternalError, "InternalError") \
224 V(NullThrownError, "NullThrownError") \ 224 V(NullThrownError, "NullThrownError") \
225 V(IsolateSpawnException, "IsolateSpawnException") \ 225 V(IsolateSpawnException, "IsolateSpawnException") \
226 V(IsolateUnhandledException, "IsolateUnhandledException") \ 226 V(IsolateUnhandledException, "IsolateUnhandledException") \
227 V(FiftyThreeBitOverflowError, "FiftyThreeBitOverflowError") \
227 V(_setupFullStackTrace, "_setupFullStackTrace") \ 228 V(_setupFullStackTrace, "_setupFullStackTrace") \
228 V(BooleanExpression, "boolean expression") \ 229 V(BooleanExpression, "boolean expression") \
229 V(Malformed, "malformed") \ 230 V(Malformed, "malformed") \
230 V(InstanceOf, "InstanceOf") \ 231 V(InstanceOf, "InstanceOf") \
231 V(MegamorphicMiss, "megamorphic_miss") \ 232 V(MegamorphicMiss, "megamorphic_miss") \
232 V(CommaSpace, ", ") \ 233 V(CommaSpace, ", ") \
233 V(ColonSpace, ": ") \ 234 V(ColonSpace, ": ") \
234 V(RParenArrow, ") => ") \ 235 V(RParenArrow, ") => ") \
235 V(SpaceExtendsSpace, " extends ") \ 236 V(SpaceExtendsSpace, " extends ") \
236 V(SwitchExpr, ":switch_expr") \ 237 V(SwitchExpr, ":switch_expr") \
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 friend class SnapshotReader; 455 friend class SnapshotReader;
455 friend class SnapshotWriter; 456 friend class SnapshotWriter;
456 friend class ApiMessageReader; 457 friend class ApiMessageReader;
457 458
458 DISALLOW_COPY_AND_ASSIGN(Symbols); 459 DISALLOW_COPY_AND_ASSIGN(Symbols);
459 }; 460 };
460 461
461 } // namespace dart 462 } // namespace dart
462 463
463 #endif // VM_SYMBOLS_H_ 464 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | sdk/lib/core/errors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698