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

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

Issue 1132603003: Change RangeError instances to use RangeError.range. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks Created 5 years, 7 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 V(_MirrorReference, "_MirrorReference") \ 280 V(_MirrorReference, "_MirrorReference") \
281 V(InvocationMirror, "_InvocationMirror") \ 281 V(InvocationMirror, "_InvocationMirror") \
282 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 282 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
283 V(toString, "toString") \ 283 V(toString, "toString") \
284 V(_lookupHandler, "_lookupHandler") \ 284 V(_lookupHandler, "_lookupHandler") \
285 V(_handleMessage, "_handleMessage") \ 285 V(_handleMessage, "_handleMessage") \
286 V(DotCreate, "._create") \ 286 V(DotCreate, "._create") \
287 V(DotWithType, "._withType") \ 287 V(DotWithType, "._withType") \
288 V(_get, "_get") \ 288 V(_get, "_get") \
289 V(RangeError, "RangeError") \ 289 V(RangeError, "RangeError") \
290 V(DotRange, ".range") \
290 V(ArgumentError, "ArgumentError") \ 291 V(ArgumentError, "ArgumentError") \
291 V(FormatException, "FormatException") \ 292 V(FormatException, "FormatException") \
292 V(UnsupportedError, "UnsupportedError") \ 293 V(UnsupportedError, "UnsupportedError") \
293 V(StackOverflowError, "StackOverflowError") \ 294 V(StackOverflowError, "StackOverflowError") \
294 V(OutOfMemoryError, "OutOfMemoryError") \ 295 V(OutOfMemoryError, "OutOfMemoryError") \
295 V(NullThrownError, "NullThrownError") \ 296 V(NullThrownError, "NullThrownError") \
296 V(IsolateSpawnException, "IsolateSpawnException") \ 297 V(IsolateSpawnException, "IsolateSpawnException") \
297 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 298 V(IsolateUnhandledException, "_IsolateUnhandledException") \
298 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 299 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
299 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ 300 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 friend class SnapshotReader; 615 friend class SnapshotReader;
615 friend class SnapshotWriter; 616 friend class SnapshotWriter;
616 friend class ApiMessageReader; 617 friend class ApiMessageReader;
617 618
618 DISALLOW_COPY_AND_ASSIGN(Symbols); 619 DISALLOW_COPY_AND_ASSIGN(Symbols);
619 }; 620 };
620 621
621 } // namespace dart 622 } // namespace dart
622 623
623 #endif // VM_SYMBOLS_H_ 624 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698