| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 V(RangeError, "RangeError") \ | 218 V(RangeError, "RangeError") \ |
| 219 V(ArgumentError, "ArgumentError") \ | 219 V(ArgumentError, "ArgumentError") \ |
| 220 V(FormatException, "FormatException") \ | 220 V(FormatException, "FormatException") \ |
| 221 V(UnsupportedError, "UnsupportedError") \ | 221 V(UnsupportedError, "UnsupportedError") \ |
| 222 V(StackOverflowError, "StackOverflowError") \ | 222 V(StackOverflowError, "StackOverflowError") \ |
| 223 V(OutOfMemoryError, "OutOfMemoryError") \ | 223 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 224 V(InternalError, "InternalError") \ | 224 V(InternalError, "InternalError") \ |
| 225 V(NullThrownError, "NullThrownError") \ | 225 V(NullThrownError, "NullThrownError") \ |
| 226 V(IsolateSpawnException, "IsolateSpawnException") \ | 226 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 227 V(IsolateUnhandledException, "IsolateUnhandledException") \ | 227 V(IsolateUnhandledException, "IsolateUnhandledException") \ |
| 228 V(FiftyThreeBitOverflowError, "FiftyThreeBitOverflowError") \ |
| 228 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 229 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
| 229 V(BooleanExpression, "boolean expression") \ | 230 V(BooleanExpression, "boolean expression") \ |
| 230 V(Malformed, "malformed") \ | 231 V(Malformed, "malformed") \ |
| 231 V(InstanceOf, "InstanceOf") \ | 232 V(InstanceOf, "InstanceOf") \ |
| 232 V(MegamorphicMiss, "megamorphic_miss") \ | 233 V(MegamorphicMiss, "megamorphic_miss") \ |
| 233 V(CommaSpace, ", ") \ | 234 V(CommaSpace, ", ") \ |
| 234 V(ColonSpace, ": ") \ | 235 V(ColonSpace, ": ") \ |
| 235 V(RParenArrow, ") => ") \ | 236 V(RParenArrow, ") => ") \ |
| 236 V(SpaceExtendsSpace, " extends ") \ | 237 V(SpaceExtendsSpace, " extends ") \ |
| 237 V(SwitchExpr, ":switch_expr") \ | 238 V(SwitchExpr, ":switch_expr") \ |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 friend class SnapshotReader; | 458 friend class SnapshotReader; |
| 458 friend class SnapshotWriter; | 459 friend class SnapshotWriter; |
| 459 friend class ApiMessageReader; | 460 friend class ApiMessageReader; |
| 460 | 461 |
| 461 DISALLOW_COPY_AND_ASSIGN(Symbols); | 462 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 462 }; | 463 }; |
| 463 | 464 |
| 464 } // namespace dart | 465 } // namespace dart |
| 465 | 466 |
| 466 #endif // VM_SYMBOLS_H_ | 467 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |