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/growable_array.h" | 8 #include "vm/growable_array.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 V(RangeError, "RangeError") \ | 300 V(RangeError, "RangeError") \ |
301 V(DotRange, ".range") \ | 301 V(DotRange, ".range") \ |
302 V(ArgumentError, "ArgumentError") \ | 302 V(ArgumentError, "ArgumentError") \ |
303 V(DotValue, ".value") \ | 303 V(DotValue, ".value") \ |
304 V(FormatException, "FormatException") \ | 304 V(FormatException, "FormatException") \ |
305 V(UnsupportedError, "UnsupportedError") \ | 305 V(UnsupportedError, "UnsupportedError") \ |
306 V(StackOverflowError, "StackOverflowError") \ | 306 V(StackOverflowError, "StackOverflowError") \ |
307 V(OutOfMemoryError, "OutOfMemoryError") \ | 307 V(OutOfMemoryError, "OutOfMemoryError") \ |
308 V(NullThrownError, "NullThrownError") \ | 308 V(NullThrownError, "NullThrownError") \ |
309 V(IsolateSpawnException, "IsolateSpawnException") \ | 309 V(IsolateSpawnException, "IsolateSpawnException") \ |
310 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | |
311 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ | |
312 V(BooleanExpression, "boolean expression") \ | 310 V(BooleanExpression, "boolean expression") \ |
313 V(Malformed, "malformed") \ | 311 V(Malformed, "malformed") \ |
314 V(Malbounded, "malbounded") \ | 312 V(Malbounded, "malbounded") \ |
315 V(MegamorphicMiss, "megamorphic_miss") \ | 313 V(MegamorphicMiss, "megamorphic_miss") \ |
316 V(CommaSpace, ", ") \ | 314 V(CommaSpace, ", ") \ |
317 V(ColonSpace, ": ") \ | 315 V(ColonSpace, ": ") \ |
318 V(RParenArrow, ") => ") \ | 316 V(RParenArrow, ") => ") \ |
319 V(SpaceExtendsSpace, " extends ") \ | 317 V(SpaceExtendsSpace, " extends ") \ |
320 V(SwitchExpr, ":switch_expr") \ | 318 V(SwitchExpr, ":switch_expr") \ |
321 V(TwoNewlines, "\n\n") \ | 319 V(TwoNewlines, "\n\n") \ |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 friend class SnapshotReader; | 660 friend class SnapshotReader; |
663 friend class SnapshotWriter; | 661 friend class SnapshotWriter; |
664 friend class ApiMessageReader; | 662 friend class ApiMessageReader; |
665 | 663 |
666 DISALLOW_COPY_AND_ASSIGN(Symbols); | 664 DISALLOW_COPY_AND_ASSIGN(Symbols); |
667 }; | 665 }; |
668 | 666 |
669 } // namespace dart | 667 } // namespace dart |
670 | 668 |
671 #endif // VM_SYMBOLS_H_ | 669 #endif // VM_SYMBOLS_H_ |
OLD | NEW |