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

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: Adapt function fingerprints too. Created 5 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
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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 friend class SnapshotReader; 620 friend class SnapshotReader;
620 friend class SnapshotWriter; 621 friend class SnapshotWriter;
621 friend class ApiMessageReader; 622 friend class ApiMessageReader;
622 623
623 DISALLOW_COPY_AND_ASSIGN(Symbols); 624 DISALLOW_COPY_AND_ASSIGN(Symbols);
624 }; 625 };
625 626
626 } // namespace dart 627 } // namespace dart
627 628
628 #endif // VM_SYMBOLS_H_ 629 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/method_recognizer.h ('k') | sdk/lib/_internal/compiler/js_lib/native_typed_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698