| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 234 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
| 235 V(toString, "toString") \ | 235 V(toString, "toString") \ |
| 236 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 236 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
| 237 V(_lookupReceivePort, "_lookupReceivePort") \ | 237 V(_lookupReceivePort, "_lookupReceivePort") \ |
| 238 V(_handleMessage, "_handleMessage") \ | 238 V(_handleMessage, "_handleMessage") \ |
| 239 V(_SendPortImpl, "_SendPortImpl") \ | 239 V(_SendPortImpl, "_SendPortImpl") \ |
| 240 V(_create, "_create") \ | 240 V(_create, "_create") \ |
| 241 V(DotCreate, "._create") \ | 241 V(DotCreate, "._create") \ |
| 242 V(DotWithType, "._withType") \ | 242 V(DotWithType, "._withType") \ |
| 243 V(_id, "_id") \ | 243 V(_id, "_id") \ |
| 244 V(_get_or_create, "_get_or_create") \ | 244 V(_get, "_get") \ |
| 245 V(RangeError, "RangeError") \ | 245 V(RangeError, "RangeError") \ |
| 246 V(ArgumentError, "ArgumentError") \ | 246 V(ArgumentError, "ArgumentError") \ |
| 247 V(FormatException, "FormatException") \ | 247 V(FormatException, "FormatException") \ |
| 248 V(UnsupportedError, "UnsupportedError") \ | 248 V(UnsupportedError, "UnsupportedError") \ |
| 249 V(StackOverflowError, "StackOverflowError") \ | 249 V(StackOverflowError, "StackOverflowError") \ |
| 250 V(OutOfMemoryError, "OutOfMemoryError") \ | 250 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 251 V(InternalError, "_InternalError") \ | 251 V(InternalError, "_InternalError") \ |
| 252 V(NullThrownError, "NullThrownError") \ | 252 V(NullThrownError, "NullThrownError") \ |
| 253 V(IsolateSpawnException, "IsolateSpawnException") \ | 253 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 254 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | 254 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 friend class SnapshotReader; | 524 friend class SnapshotReader; |
| 525 friend class SnapshotWriter; | 525 friend class SnapshotWriter; |
| 526 friend class ApiMessageReader; | 526 friend class ApiMessageReader; |
| 527 | 527 |
| 528 DISALLOW_COPY_AND_ASSIGN(Symbols); | 528 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 529 }; | 529 }; |
| 530 | 530 |
| 531 } // namespace dart | 531 } // namespace dart |
| 532 | 532 |
| 533 #endif // VM_SYMBOLS_H_ | 533 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |