| 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 21 matching lines...) Expand all Loading... |
| 32 V(TypeArgumentsParameter, ":type_arguments") \ | 32 V(TypeArgumentsParameter, ":type_arguments") \ |
| 33 V(AssertionError, "AssertionErrorImplementation") \ | 33 V(AssertionError, "AssertionErrorImplementation") \ |
| 34 V(TypeError, "TypeErrorImplementation") \ | 34 V(TypeError, "TypeErrorImplementation") \ |
| 35 V(FallThroughError, "FallThroughErrorImplementation") \ | 35 V(FallThroughError, "FallThroughErrorImplementation") \ |
| 36 V(AbstractClassInstantiationError, \ | 36 V(AbstractClassInstantiationError, \ |
| 37 "AbstractClassInstantiationErrorImplementation") \ | 37 "AbstractClassInstantiationErrorImplementation") \ |
| 38 V(StaticResolutionException, "StaticResolutionException") \ | 38 V(StaticResolutionException, "StaticResolutionException") \ |
| 39 V(ThrowNew, "_throwNew") \ | 39 V(ThrowNew, "_throwNew") \ |
| 40 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ | 40 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ |
| 41 V(ListLiteralFactory, "List.fromLiteral") \ | 41 V(ListLiteralFactory, "List.fromLiteral") \ |
| 42 V(ListImplementation, "ListImplementation") \ |
| 43 V(ListFactory, "List.") \ |
| 42 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ | 44 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ |
| 43 V(MapLiteralFactory, "Map.fromLiteral") \ | 45 V(MapLiteralFactory, "Map.fromLiteral") \ |
| 44 V(ImmutableMap, "ImmutableMap") \ | 46 V(ImmutableMap, "ImmutableMap") \ |
| 45 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 47 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 46 V(StringBase, "StringBase") \ | 48 V(StringBase, "StringBase") \ |
| 47 V(Interpolate, "_interpolate") \ | 49 V(Interpolate, "_interpolate") \ |
| 48 V(GetIterator, "iterator") \ | 50 V(GetIterator, "iterator") \ |
| 49 V(NoSuchMethod, "noSuchMethod") \ | 51 V(NoSuchMethod, "noSuchMethod") \ |
| 50 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ | 52 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ |
| 51 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 53 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 friend class SnapshotReader; | 219 friend class SnapshotReader; |
| 218 friend class SnapshotWriter; | 220 friend class SnapshotWriter; |
| 219 friend class ApiMessageReader; | 221 friend class ApiMessageReader; |
| 220 | 222 |
| 221 DISALLOW_COPY_AND_ASSIGN(Symbols); | 223 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 222 }; | 224 }; |
| 223 | 225 |
| 224 } // namespace dart | 226 } // namespace dart |
| 225 | 227 |
| 226 #endif // VM_SYMBOLS_H_ | 228 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |