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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 V(Stream, "stream") \ | 48 V(Stream, "stream") \ |
49 V(isPaused, "isPaused") \ | 49 V(isPaused, "isPaused") \ |
50 V(AddError, "addError") \ | 50 V(AddError, "addError") \ |
51 V(AddStream, "addStream") \ | 51 V(AddStream, "addStream") \ |
52 V(Cancel, "cancel") \ | 52 V(Cancel, "cancel") \ |
53 V(Close, "close") \ | 53 V(Close, "close") \ |
54 V(Values, "values") \ | 54 V(Values, "values") \ |
55 V(_EnumNames, "_enum_names") \ | 55 V(_EnumNames, "_enum_names") \ |
56 V(ExprTemp, ":expr_temp") \ | 56 V(ExprTemp, ":expr_temp") \ |
57 V(AnonymousClosure, "<anonymous closure>") \ | 57 V(AnonymousClosure, "<anonymous closure>") \ |
| 58 V(AnonymousSignature, "<anonymous signature>") \ |
58 V(ImplicitClosure, "<implicit closure>") \ | 59 V(ImplicitClosure, "<implicit closure>") \ |
59 V(ClosureParameter, ":closure") \ | 60 V(ClosureParameter, ":closure") \ |
60 V(TypeArgumentsParameter, ":type_arguments") \ | 61 V(TypeArgumentsParameter, ":type_arguments") \ |
61 V(AssertionError, "_AssertionError") \ | 62 V(AssertionError, "_AssertionError") \ |
62 V(CastError, "_CastError") \ | 63 V(CastError, "_CastError") \ |
63 V(TypeError, "_TypeError") \ | 64 V(TypeError, "_TypeError") \ |
64 V(FallThroughError, "FallThroughError") \ | 65 V(FallThroughError, "FallThroughError") \ |
65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 66 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
66 V(NoSuchMethodError, "NoSuchMethodError") \ | 67 V(NoSuchMethodError, "NoSuchMethodError") \ |
67 V(CyclicInitializationError, "CyclicInitializationError") \ | 68 V(CyclicInitializationError, "CyclicInitializationError") \ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 V(CompleterSyncConstructor, "Completer.sync") \ | 129 V(CompleterSyncConstructor, "Completer.sync") \ |
129 V(CompleterFuture, "future") \ | 130 V(CompleterFuture, "future") \ |
130 V(StreamIterator, "StreamIterator") \ | 131 V(StreamIterator, "StreamIterator") \ |
131 V(StreamIteratorConstructor, "StreamIterator.") \ | 132 V(StreamIteratorConstructor, "StreamIterator.") \ |
132 V(Native, "native") \ | 133 V(Native, "native") \ |
133 V(Class, "Class") \ | 134 V(Class, "Class") \ |
134 V(Null, "Null") \ | 135 V(Null, "Null") \ |
135 V(Dynamic, "dynamic") \ | 136 V(Dynamic, "dynamic") \ |
136 V(UnresolvedClass, "UnresolvedClass") \ | 137 V(UnresolvedClass, "UnresolvedClass") \ |
137 V(Type, "_Type") \ | 138 V(Type, "_Type") \ |
| 139 V(FunctionType, "_FunctionType") \ |
138 V(TypeRef, "_TypeRef") \ | 140 V(TypeRef, "_TypeRef") \ |
139 V(TypeParameter, "_TypeParameter") \ | 141 V(TypeParameter, "_TypeParameter") \ |
140 V(BoundedType, "_BoundedType") \ | 142 V(BoundedType, "_BoundedType") \ |
141 V(MixinAppType, "_MixinAppType") \ | 143 V(MixinAppType, "_MixinAppType") \ |
142 V(TypeArguments, "TypeArguments") \ | 144 V(TypeArguments, "TypeArguments") \ |
143 V(Patch, "patch") \ | 145 V(Patch, "patch") \ |
144 V(PatchClass, "PatchClass") \ | 146 V(PatchClass, "PatchClass") \ |
145 V(Function, "Function") \ | 147 V(Function, "Function") \ |
146 V(FunctionImpl, "_FunctionImpl") \ | 148 V(_Closure, "_Closure") \ |
147 V(FunctionResult, "function result") \ | 149 V(FunctionResult, "function result") \ |
148 V(FactoryResult, "factory result") \ | 150 V(FactoryResult, "factory result") \ |
149 V(ClosureData, "ClosureData") \ | 151 V(ClosureData, "ClosureData") \ |
150 V(RedirectionData, "RedirectionData") \ | 152 V(RedirectionData, "RedirectionData") \ |
151 V(Field, "Field") \ | 153 V(Field, "Field") \ |
152 V(LiteralToken, "LiteralToken") \ | 154 V(LiteralToken, "LiteralToken") \ |
153 V(TokenStream, "TokenStream") \ | 155 V(TokenStream, "TokenStream") \ |
154 V(Script, "Script") \ | 156 V(Script, "Script") \ |
155 V(LibraryClass, "Library") \ | 157 V(LibraryClass, "Library") \ |
156 V(LibraryPrefix, "LibraryPrefix") \ | 158 V(LibraryPrefix, "LibraryPrefix") \ |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 friend class SnapshotReader; | 656 friend class SnapshotReader; |
655 friend class SnapshotWriter; | 657 friend class SnapshotWriter; |
656 friend class ApiMessageReader; | 658 friend class ApiMessageReader; |
657 | 659 |
658 DISALLOW_COPY_AND_ASSIGN(Symbols); | 660 DISALLOW_COPY_AND_ASSIGN(Symbols); |
659 }; | 661 }; |
660 | 662 |
661 } // namespace dart | 663 } // namespace dart |
662 | 664 |
663 #endif // VM_SYMBOLS_H_ | 665 #endif // VM_SYMBOLS_H_ |
OLD | NEW |