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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 V(TypeArgumentsParameter, ":type_arguments") \ | 64 V(TypeArgumentsParameter, ":type_arguments") \ |
65 V(AssertionError, "_AssertionError") \ | 65 V(AssertionError, "_AssertionError") \ |
66 V(CastError, "_CastError") \ | 66 V(CastError, "_CastError") \ |
67 V(TypeError, "_TypeError") \ | 67 V(TypeError, "_TypeError") \ |
68 V(FallThroughError, "FallThroughError") \ | 68 V(FallThroughError, "FallThroughError") \ |
69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
70 V(NoSuchMethodError, "NoSuchMethodError") \ | 70 V(NoSuchMethodError, "NoSuchMethodError") \ |
71 V(CyclicInitializationError, "CyclicInitializationError") \ | 71 V(CyclicInitializationError, "CyclicInitializationError") \ |
72 V(ThrowNew, "_throwNew") \ | 72 V(ThrowNew, "_throwNew") \ |
73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ | 73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
| 74 V(HandleCondition, "_handleCondition") \ |
74 V(Symbol, "Symbol") \ | 75 V(Symbol, "Symbol") \ |
75 V(SymbolCtor, "Symbol.") \ | 76 V(SymbolCtor, "Symbol.") \ |
76 V(List, "List") \ | 77 V(List, "List") \ |
77 V(ListLiteralFactory, "List._fromLiteral") \ | 78 V(ListLiteralFactory, "List._fromLiteral") \ |
78 V(ListFactory, "List.") \ | 79 V(ListFactory, "List.") \ |
79 V(Map, "Map") \ | 80 V(Map, "Map") \ |
80 V(MapLiteralFactory, "Map._fromLiteral") \ | 81 V(MapLiteralFactory, "Map._fromLiteral") \ |
81 V(ImmutableMap, "ImmutableMap") \ | 82 V(ImmutableMap, "ImmutableMap") \ |
82 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 83 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
83 V(StringBase, "_StringBase") \ | 84 V(StringBase, "_StringBase") \ |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 friend class SnapshotReader; | 677 friend class SnapshotReader; |
677 friend class SnapshotWriter; | 678 friend class SnapshotWriter; |
678 friend class ApiMessageReader; | 679 friend class ApiMessageReader; |
679 | 680 |
680 DISALLOW_COPY_AND_ASSIGN(Symbols); | 681 DISALLOW_COPY_AND_ASSIGN(Symbols); |
681 }; | 682 }; |
682 | 683 |
683 } // namespace dart | 684 } // namespace dart |
684 | 685 |
685 #endif // VM_SYMBOLS_H_ | 686 #endif // VM_SYMBOLS_H_ |
OLD | NEW |