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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 V(PhaseParameter, ":phase") \ | 59 V(PhaseParameter, ":phase") \ |
60 V(TypeArgumentsParameter, ":type_arguments") \ | 60 V(TypeArgumentsParameter, ":type_arguments") \ |
61 V(AssertionError, "_AssertionError") \ | 61 V(AssertionError, "_AssertionError") \ |
62 V(CastError, "_CastError") \ | 62 V(CastError, "_CastError") \ |
63 V(TypeError, "_TypeError") \ | 63 V(TypeError, "_TypeError") \ |
64 V(FallThroughError, "FallThroughError") \ | 64 V(FallThroughError, "FallThroughError") \ |
65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
66 V(NoSuchMethodError, "NoSuchMethodError") \ | 66 V(NoSuchMethodError, "NoSuchMethodError") \ |
67 V(CyclicInitializationError, "CyclicInitializationError") \ | 67 V(CyclicInitializationError, "CyclicInitializationError") \ |
68 V(ThrowNew, "_throwNew") \ | 68 V(ThrowNew, "_throwNew") \ |
| 69 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
69 V(Symbol, "Symbol") \ | 70 V(Symbol, "Symbol") \ |
70 V(SymbolCtor, "Symbol.") \ | 71 V(SymbolCtor, "Symbol.") \ |
71 V(List, "List") \ | 72 V(List, "List") \ |
72 V(ListLiteralFactory, "List._fromLiteral") \ | 73 V(ListLiteralFactory, "List._fromLiteral") \ |
73 V(ListFactory, "List.") \ | 74 V(ListFactory, "List.") \ |
74 V(Map, "Map") \ | 75 V(Map, "Map") \ |
75 V(MapLiteralFactory, "Map._fromLiteral") \ | 76 V(MapLiteralFactory, "Map._fromLiteral") \ |
76 V(ImmutableMap, "ImmutableMap") \ | 77 V(ImmutableMap, "ImmutableMap") \ |
77 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 78 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
78 V(StringBase, "_StringBase") \ | 79 V(StringBase, "_StringBase") \ |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 friend class SnapshotReader; | 627 friend class SnapshotReader; |
627 friend class SnapshotWriter; | 628 friend class SnapshotWriter; |
628 friend class ApiMessageReader; | 629 friend class ApiMessageReader; |
629 | 630 |
630 DISALLOW_COPY_AND_ASSIGN(Symbols); | 631 DISALLOW_COPY_AND_ASSIGN(Symbols); |
631 }; | 632 }; |
632 | 633 |
633 } // namespace dart | 634 } // namespace dart |
634 | 635 |
635 #endif // VM_SYMBOLS_H_ | 636 #endif // VM_SYMBOLS_H_ |
OLD | NEW |