| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 V(ArgumentError, "ArgumentError") \ | 221 V(ArgumentError, "ArgumentError") \ |
| 222 V(FormatException, "FormatException") \ | 222 V(FormatException, "FormatException") \ |
| 223 V(UnsupportedError, "UnsupportedError") \ | 223 V(UnsupportedError, "UnsupportedError") \ |
| 224 V(StackOverflowError, "StackOverflowError") \ | 224 V(StackOverflowError, "StackOverflowError") \ |
| 225 V(OutOfMemoryError, "OutOfMemoryError") \ | 225 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 226 V(InternalError, "InternalError") \ | 226 V(InternalError, "InternalError") \ |
| 227 V(NullThrownError, "NullThrownError") \ | 227 V(NullThrownError, "NullThrownError") \ |
| 228 V(IsolateSpawnException, "IsolateSpawnException") \ | 228 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 229 V(IsolateUnhandledException, "IsolateUnhandledException") \ | 229 V(IsolateUnhandledException, "IsolateUnhandledException") \ |
| 230 V(FiftyThreeBitOverflowError, "_FiftyThreeBitOverflowError") \ | 230 V(FiftyThreeBitOverflowError, "_FiftyThreeBitOverflowError") \ |
| 231 V(MirroredCompilationError, "MirroredCompilationError") \ |
| 232 V(MirroredUncaughtExceptionError, "MirroredUncaughtExceptionError") \ |
| 231 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 233 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
| 232 V(BooleanExpression, "boolean expression") \ | 234 V(BooleanExpression, "boolean expression") \ |
| 233 V(Malformed, "malformed") \ | 235 V(Malformed, "malformed") \ |
| 234 V(InstanceOf, "InstanceOf") \ | 236 V(InstanceOf, "InstanceOf") \ |
| 235 V(MegamorphicMiss, "megamorphic_miss") \ | 237 V(MegamorphicMiss, "megamorphic_miss") \ |
| 236 V(CommaSpace, ", ") \ | 238 V(CommaSpace, ", ") \ |
| 237 V(ColonSpace, ": ") \ | 239 V(ColonSpace, ": ") \ |
| 238 V(RParenArrow, ") => ") \ | 240 V(RParenArrow, ") => ") \ |
| 239 V(SpaceExtendsSpace, " extends ") \ | 241 V(SpaceExtendsSpace, " extends ") \ |
| 240 V(SwitchExpr, ":switch_expr") \ | 242 V(SwitchExpr, ":switch_expr") \ |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 friend class SnapshotReader; | 465 friend class SnapshotReader; |
| 464 friend class SnapshotWriter; | 466 friend class SnapshotWriter; |
| 465 friend class ApiMessageReader; | 467 friend class ApiMessageReader; |
| 466 | 468 |
| 467 DISALLOW_COPY_AND_ASSIGN(Symbols); | 469 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 468 }; | 470 }; |
| 469 | 471 |
| 470 } // namespace dart | 472 } // namespace dart |
| 471 | 473 |
| 472 #endif // VM_SYMBOLS_H_ | 474 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |