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