| 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(_id, "_id") \ | 234 V(_id, "_id") \ |
| 235 V(_get_or_create, "_get_or_create") \ | 235 V(_get_or_create, "_get_or_create") \ |
| 236 V(RangeError, "RangeError") \ | 236 V(RangeError, "RangeError") \ |
| 237 V(ArgumentError, "ArgumentError") \ | 237 V(ArgumentError, "ArgumentError") \ |
| 238 V(FormatException, "FormatException") \ | 238 V(FormatException, "FormatException") \ |
| 239 V(UnsupportedError, "UnsupportedError") \ | 239 V(UnsupportedError, "UnsupportedError") \ |
| 240 V(StackOverflowError, "StackOverflowError") \ | 240 V(StackOverflowError, "StackOverflowError") \ |
| 241 V(OutOfMemoryError, "OutOfMemoryError") \ | 241 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 242 V(InternalError, "InternalError") \ | 242 V(InternalError, "InternalError") \ |
| 243 V(NullThrownError, "NullThrownError") \ | 243 V(NullThrownError, "NullThrownError") \ |
| 244 V(IsolateMessageException, "IsolateMessageException") \ |
| 244 V(IsolateSpawnException, "IsolateSpawnException") \ | 245 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 245 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | 246 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
| 246 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 247 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
| 247 V(MirroredCompilationError, "MirroredCompilationError") \ | 248 V(MirroredCompilationError, "MirroredCompilationError") \ |
| 248 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 249 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
| 249 V(BooleanExpression, "boolean expression") \ | 250 V(BooleanExpression, "boolean expression") \ |
| 250 V(Malformed, "malformed") \ | 251 V(Malformed, "malformed") \ |
| 251 V(Malbounded, "malbounded") \ | 252 V(Malbounded, "malbounded") \ |
| 252 V(InstanceOf, "InstanceOf") \ | 253 V(InstanceOf, "InstanceOf") \ |
| 253 V(MegamorphicMiss, "megamorphic_miss") \ | 254 V(MegamorphicMiss, "megamorphic_miss") \ |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 friend class SnapshotReader; | 509 friend class SnapshotReader; |
| 509 friend class SnapshotWriter; | 510 friend class SnapshotWriter; |
| 510 friend class ApiMessageReader; | 511 friend class ApiMessageReader; |
| 511 | 512 |
| 512 DISALLOW_COPY_AND_ASSIGN(Symbols); | 513 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 513 }; | 514 }; |
| 514 | 515 |
| 515 } // namespace dart | 516 } // namespace dart |
| 516 | 517 |
| 517 #endif // VM_SYMBOLS_H_ | 518 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |