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

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

Issue 21301003: Fixes javascript integer overflow check. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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
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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 V(RangeError, "RangeError") \ 221 V(RangeError, "RangeError") \
222 V(ArgumentError, "ArgumentError") \ 222 V(ArgumentError, "ArgumentError") \
223 V(FormatException, "FormatException") \ 223 V(FormatException, "FormatException") \
224 V(UnsupportedError, "UnsupportedError") \ 224 V(UnsupportedError, "UnsupportedError") \
225 V(StackOverflowError, "StackOverflowError") \ 225 V(StackOverflowError, "StackOverflowError") \
226 V(OutOfMemoryError, "OutOfMemoryError") \ 226 V(OutOfMemoryError, "OutOfMemoryError") \
227 V(InternalError, "InternalError") \ 227 V(InternalError, "InternalError") \
228 V(NullThrownError, "NullThrownError") \ 228 V(NullThrownError, "NullThrownError") \
229 V(IsolateSpawnException, "IsolateSpawnException") \ 229 V(IsolateSpawnException, "IsolateSpawnException") \
230 V(IsolateUnhandledException, "IsolateUnhandledException") \ 230 V(IsolateUnhandledException, "IsolateUnhandledException") \
231 V(FiftyThreeBitOverflowError, "_FiftyThreeBitOverflowError") \ 231 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
232 V(MirroredCompilationError, "MirroredCompilationError") \ 232 V(MirroredCompilationError, "MirroredCompilationError") \
233 V(MirroredUncaughtExceptionError, "MirroredUncaughtExceptionError") \ 233 V(MirroredUncaughtExceptionError, "MirroredUncaughtExceptionError") \
234 V(_setupFullStackTrace, "_setupFullStackTrace") \ 234 V(_setupFullStackTrace, "_setupFullStackTrace") \
235 V(BooleanExpression, "boolean expression") \ 235 V(BooleanExpression, "boolean expression") \
236 V(Malformed, "malformed") \ 236 V(Malformed, "malformed") \
237 V(InstanceOf, "InstanceOf") \ 237 V(InstanceOf, "InstanceOf") \
238 V(MegamorphicMiss, "megamorphic_miss") \ 238 V(MegamorphicMiss, "megamorphic_miss") \
239 V(CommaSpace, ", ") \ 239 V(CommaSpace, ", ") \
240 V(ColonSpace, ": ") \ 240 V(ColonSpace, ": ") \
241 V(RParenArrow, ") => ") \ 241 V(RParenArrow, ") => ") \
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 friend class SnapshotReader; 472 friend class SnapshotReader;
473 friend class SnapshotWriter; 473 friend class SnapshotWriter;
474 friend class ApiMessageReader; 474 friend class ApiMessageReader;
475 475
476 DISALLOW_COPY_AND_ASSIGN(Symbols); 476 DISALLOW_COPY_AND_ASSIGN(Symbols);
477 }; 477 };
478 478
479 } // namespace dart 479 } // namespace dart
480 480
481 #endif // VM_SYMBOLS_H_ 481 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698