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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 283 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
284 V(toString, "toString") \ | 284 V(toString, "toString") \ |
285 V(_lookupHandler, "_lookupHandler") \ | 285 V(_lookupHandler, "_lookupHandler") \ |
286 V(_handleMessage, "_handleMessage") \ | 286 V(_handleMessage, "_handleMessage") \ |
287 V(DotCreate, "._create") \ | 287 V(DotCreate, "._create") \ |
288 V(DotWithType, "._withType") \ | 288 V(DotWithType, "._withType") \ |
289 V(_get, "_get") \ | 289 V(_get, "_get") \ |
290 V(RangeError, "RangeError") \ | 290 V(RangeError, "RangeError") \ |
291 V(DotRange, ".range") \ | 291 V(DotRange, ".range") \ |
292 V(ArgumentError, "ArgumentError") \ | 292 V(ArgumentError, "ArgumentError") \ |
| 293 V(DotValue, ".value") \ |
293 V(FormatException, "FormatException") \ | 294 V(FormatException, "FormatException") \ |
294 V(UnsupportedError, "UnsupportedError") \ | 295 V(UnsupportedError, "UnsupportedError") \ |
295 V(StackOverflowError, "StackOverflowError") \ | 296 V(StackOverflowError, "StackOverflowError") \ |
296 V(OutOfMemoryError, "OutOfMemoryError") \ | 297 V(OutOfMemoryError, "OutOfMemoryError") \ |
297 V(NullThrownError, "NullThrownError") \ | 298 V(NullThrownError, "NullThrownError") \ |
298 V(IsolateSpawnException, "IsolateSpawnException") \ | 299 V(IsolateSpawnException, "IsolateSpawnException") \ |
299 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | 300 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
300 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 301 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
301 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ | 302 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ |
302 V(BooleanExpression, "boolean expression") \ | 303 V(BooleanExpression, "boolean expression") \ |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 friend class SnapshotReader; | 622 friend class SnapshotReader; |
622 friend class SnapshotWriter; | 623 friend class SnapshotWriter; |
623 friend class ApiMessageReader; | 624 friend class ApiMessageReader; |
624 | 625 |
625 DISALLOW_COPY_AND_ASSIGN(Symbols); | 626 DISALLOW_COPY_AND_ASSIGN(Symbols); |
626 }; | 627 }; |
627 | 628 |
628 } // namespace dart | 629 } // namespace dart |
629 | 630 |
630 #endif // VM_SYMBOLS_H_ | 631 #endif // VM_SYMBOLS_H_ |
OLD | NEW |