| 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 24 matching lines...) Expand all Loading... |
| 35 V(ClosureParameter, ":closure") \ | 35 V(ClosureParameter, ":closure") \ |
| 36 V(PhaseParameter, ":phase") \ | 36 V(PhaseParameter, ":phase") \ |
| 37 V(TypeArgumentsParameter, ":type_arguments") \ | 37 V(TypeArgumentsParameter, ":type_arguments") \ |
| 38 V(AssertionError, "AssertionErrorImplementation") \ | 38 V(AssertionError, "AssertionErrorImplementation") \ |
| 39 V(TypeError, "TypeErrorImplementation") \ | 39 V(TypeError, "TypeErrorImplementation") \ |
| 40 V(FallThroughError, "FallThroughErrorImplementation") \ | 40 V(FallThroughError, "FallThroughErrorImplementation") \ |
| 41 V(AbstractClassInstantiationError, \ | 41 V(AbstractClassInstantiationError, \ |
| 42 "AbstractClassInstantiationErrorImplementation") \ | 42 "AbstractClassInstantiationErrorImplementation") \ |
| 43 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ | 43 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ |
| 44 V(ThrowNew, "_throwNew") \ | 44 V(ThrowNew, "_throwNew") \ |
| 45 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ | 45 V(ListLiteralFactory, "List._fromLiteral") \ |
| 46 V(ListLiteralFactory, "List.fromLiteral") \ | |
| 47 V(ListImplementation, "_ListImpl") \ | 46 V(ListImplementation, "_ListImpl") \ |
| 48 V(ListFactory, "List.") \ | 47 V(ListFactory, "List.") \ |
| 49 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ | 48 V(MapImplementation, "_HashMapImpl") \ |
| 50 V(MapLiteralFactory, "Map.fromLiteral") \ | 49 V(MapLiteralFactory, "Map._fromLiteral") \ |
| 51 V(ImmutableMap, "ImmutableMap") \ | 50 V(ImmutableMap, "ImmutableMap") \ |
| 52 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 51 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 53 V(StringBase, "_StringBase") \ | 52 V(StringBase, "_StringBase") \ |
| 54 V(Interpolate, "_interpolate") \ | 53 V(Interpolate, "_interpolate") \ |
| 55 V(GetIterator, "iterator") \ | 54 V(GetIterator, "iterator") \ |
| 56 V(NoSuchMethod, "noSuchMethod") \ | 55 V(NoSuchMethod, "noSuchMethod") \ |
| 57 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ | 56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ |
| 58 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 57 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
| 59 V(SavedContextVar, ":saved_context_var") \ | 58 V(SavedContextVar, ":saved_context_var") \ |
| 60 V(ExceptionVar, ":exception_var") \ | 59 V(ExceptionVar, ":exception_var") \ |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 friend class SnapshotReader; | 227 friend class SnapshotReader; |
| 229 friend class SnapshotWriter; | 228 friend class SnapshotWriter; |
| 230 friend class ApiMessageReader; | 229 friend class ApiMessageReader; |
| 231 | 230 |
| 232 DISALLOW_COPY_AND_ASSIGN(Symbols); | 231 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 233 }; | 232 }; |
| 234 | 233 |
| 235 } // namespace dart | 234 } // namespace dart |
| 236 | 235 |
| 237 #endif // VM_SYMBOLS_H_ | 236 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |