| 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 14 matching lines...) Expand all Loading... |
| 25 V(HasNext, "hasNext") \ | 25 V(HasNext, "hasNext") \ |
| 26 V(Next, "next") \ | 26 V(Next, "next") \ |
| 27 V(Value, "value") \ | 27 V(Value, "value") \ |
| 28 V(ExprTemp, ":expr_temp") \ | 28 V(ExprTemp, ":expr_temp") \ |
| 29 V(AnonymousClosure, "<anonymous closure>") \ | 29 V(AnonymousClosure, "<anonymous closure>") \ |
| 30 V(PhaseParameter, ":phase") \ | 30 V(PhaseParameter, ":phase") \ |
| 31 V(TypeArgumentsParameter, ":type_arguments") \ | 31 V(TypeArgumentsParameter, ":type_arguments") \ |
| 32 V(AssertionError, "AssertionErrorImplementation") \ | 32 V(AssertionError, "AssertionErrorImplementation") \ |
| 33 V(TypeError, "TypeErrorImplementation") \ | 33 V(TypeError, "TypeErrorImplementation") \ |
| 34 V(FallThroughError, "FallThroughErrorImplementation") \ | 34 V(FallThroughError, "FallThroughErrorImplementation") \ |
| 35 V(AbstractClassInstantiationError, \ |
| 36 "AbstractClassInstantiationErrorImplementation") \ |
| 35 V(StaticResolutionException, "StaticResolutionException") \ | 37 V(StaticResolutionException, "StaticResolutionException") \ |
| 36 V(ThrowNew, "_throwNew") \ | 38 V(ThrowNew, "_throwNew") \ |
| 37 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ | 39 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ |
| 38 V(ListLiteralFactory, "List.fromLiteral") \ | 40 V(ListLiteralFactory, "List.fromLiteral") \ |
| 39 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ | 41 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ |
| 40 V(MapLiteralFactory, "Map.fromLiteral") \ | 42 V(MapLiteralFactory, "Map.fromLiteral") \ |
| 41 V(ImmutableMap, "ImmutableMap") \ | 43 V(ImmutableMap, "ImmutableMap") \ |
| 42 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 44 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 43 V(StringBase, "StringBase") \ | 45 V(StringBase, "StringBase") \ |
| 44 V(Interpolate, "_interpolate") \ | 46 V(Interpolate, "_interpolate") \ |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 friend class SnapshotReader; | 212 friend class SnapshotReader; |
| 211 friend class SnapshotWriter; | 213 friend class SnapshotWriter; |
| 212 friend class ApiMessageReader; | 214 friend class ApiMessageReader; |
| 213 | 215 |
| 214 DISALLOW_COPY_AND_ASSIGN(Symbols); | 216 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 215 }; | 217 }; |
| 216 | 218 |
| 217 } // namespace dart | 219 } // namespace dart |
| 218 | 220 |
| 219 #endif // VM_SYMBOLS_H_ | 221 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |