OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |