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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 284 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
285 V(toString, "toString") \ | 285 V(toString, "toString") \ |
286 V(_lookupHandler, "_lookupHandler") \ | 286 V(_lookupHandler, "_lookupHandler") \ |
287 V(_handleMessage, "_handleMessage") \ | 287 V(_handleMessage, "_handleMessage") \ |
288 V(DotCreate, "._create") \ | 288 V(DotCreate, "._create") \ |
289 V(DotWithType, "._withType") \ | 289 V(DotWithType, "._withType") \ |
290 V(_get, "_get") \ | 290 V(_get, "_get") \ |
291 V(RangeError, "RangeError") \ | 291 V(RangeError, "RangeError") \ |
292 V(DotRange, ".range") \ | 292 V(DotRange, ".range") \ |
293 V(ArgumentError, "ArgumentError") \ | 293 V(ArgumentError, "ArgumentError") \ |
| 294 V(DotValue, ".value") \ |
294 V(FormatException, "FormatException") \ | 295 V(FormatException, "FormatException") \ |
295 V(UnsupportedError, "UnsupportedError") \ | 296 V(UnsupportedError, "UnsupportedError") \ |
296 V(StackOverflowError, "StackOverflowError") \ | 297 V(StackOverflowError, "StackOverflowError") \ |
297 V(OutOfMemoryError, "OutOfMemoryError") \ | 298 V(OutOfMemoryError, "OutOfMemoryError") \ |
298 V(NullThrownError, "NullThrownError") \ | 299 V(NullThrownError, "NullThrownError") \ |
299 V(IsolateSpawnException, "IsolateSpawnException") \ | 300 V(IsolateSpawnException, "IsolateSpawnException") \ |
300 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | 301 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
301 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 302 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
302 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ | 303 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ |
303 V(BooleanExpression, "boolean expression") \ | 304 V(BooleanExpression, "boolean expression") \ |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 friend class SnapshotReader; | 633 friend class SnapshotReader; |
633 friend class SnapshotWriter; | 634 friend class SnapshotWriter; |
634 friend class ApiMessageReader; | 635 friend class ApiMessageReader; |
635 | 636 |
636 DISALLOW_COPY_AND_ASSIGN(Symbols); | 637 DISALLOW_COPY_AND_ASSIGN(Symbols); |
637 }; | 638 }; |
638 | 639 |
639 } // namespace dart | 640 } // namespace dart |
640 | 641 |
641 #endif // VM_SYMBOLS_H_ | 642 #endif // VM_SYMBOLS_H_ |
OLD | NEW |