| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 V(FormatException, "FormatException") \ | 230 V(FormatException, "FormatException") \ |
| 231 V(UnsupportedError, "UnsupportedError") \ | 231 V(UnsupportedError, "UnsupportedError") \ |
| 232 V(StackOverflowError, "StackOverflowError") \ | 232 V(StackOverflowError, "StackOverflowError") \ |
| 233 V(OutOfMemoryError, "OutOfMemoryError") \ | 233 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 234 V(InternalError, "InternalError") \ | 234 V(InternalError, "InternalError") \ |
| 235 V(NullThrownError, "NullThrownError") \ | 235 V(NullThrownError, "NullThrownError") \ |
| 236 V(IsolateSpawnException, "IsolateSpawnException") \ | 236 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 237 V(IsolateUnhandledException, "IsolateUnhandledException") \ | 237 V(IsolateUnhandledException, "IsolateUnhandledException") \ |
| 238 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 238 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
| 239 V(MirroredCompilationError, "MirroredCompilationError") \ | 239 V(MirroredCompilationError, "MirroredCompilationError") \ |
| 240 V(MirroredUncaughtExceptionError, "MirroredUncaughtExceptionError") \ | |
| 241 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 240 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
| 242 V(BooleanExpression, "boolean expression") \ | 241 V(BooleanExpression, "boolean expression") \ |
| 243 V(Malformed, "malformed") \ | 242 V(Malformed, "malformed") \ |
| 244 V(InstanceOf, "InstanceOf") \ | 243 V(InstanceOf, "InstanceOf") \ |
| 245 V(MegamorphicMiss, "megamorphic_miss") \ | 244 V(MegamorphicMiss, "megamorphic_miss") \ |
| 246 V(CommaSpace, ", ") \ | 245 V(CommaSpace, ", ") \ |
| 247 V(ColonSpace, ": ") \ | 246 V(ColonSpace, ": ") \ |
| 248 V(RParenArrow, ") => ") \ | 247 V(RParenArrow, ") => ") \ |
| 249 V(SpaceExtendsSpace, " extends ") \ | 248 V(SpaceExtendsSpace, " extends ") \ |
| 250 V(SwitchExpr, ":switch_expr") \ | 249 V(SwitchExpr, ":switch_expr") \ |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 friend class SnapshotReader; | 489 friend class SnapshotReader; |
| 491 friend class SnapshotWriter; | 490 friend class SnapshotWriter; |
| 492 friend class ApiMessageReader; | 491 friend class ApiMessageReader; |
| 493 | 492 |
| 494 DISALLOW_COPY_AND_ASSIGN(Symbols); | 493 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 495 }; | 494 }; |
| 496 | 495 |
| 497 } // namespace dart | 496 } // namespace dart |
| 498 | 497 |
| 499 #endif // VM_SYMBOLS_H_ | 498 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |