| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 V(SymbolCtor, "Symbol.") \ | 48 V(SymbolCtor, "Symbol.") \ |
| 49 V(List, "List") \ | 49 V(List, "List") \ |
| 50 V(ListLiteralFactory, "List._fromLiteral") \ | 50 V(ListLiteralFactory, "List._fromLiteral") \ |
| 51 V(ListFactory, "List.") \ | 51 V(ListFactory, "List.") \ |
| 52 V(Map, "Map") \ | 52 V(Map, "Map") \ |
| 53 V(MapLiteralFactory, "Map._fromLiteral") \ | 53 V(MapLiteralFactory, "Map._fromLiteral") \ |
| 54 V(ImmutableMap, "ImmutableMap") \ | 54 V(ImmutableMap, "ImmutableMap") \ |
| 55 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 55 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 56 V(StringBase, "_StringBase") \ | 56 V(StringBase, "_StringBase") \ |
| 57 V(Interpolate, "_interpolate") \ | 57 V(Interpolate, "_interpolate") \ |
| 58 V(InterpolateSingle, "_interpolateSingle") \ |
| 58 V(GetIterator, "iterator") \ | 59 V(GetIterator, "iterator") \ |
| 59 V(NoSuchMethod, "noSuchMethod") \ | 60 V(NoSuchMethod, "noSuchMethod") \ |
| 60 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 61 V(SavedCurrentContextVar, ":saved_current_context_var") \ |
| 61 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 62 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
| 62 V(SavedTryContextVar, ":saved_try_context_var") \ | 63 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 63 V(ExceptionParameter, ":exception") \ | 64 V(ExceptionParameter, ":exception") \ |
| 64 V(StackTraceParameter, ":stack_trace") \ | 65 V(StackTraceParameter, ":stack_trace") \ |
| 65 V(ExceptionVar, ":exception_var") \ | 66 V(ExceptionVar, ":exception_var") \ |
| 66 V(StackTraceVar, ":stack_trace_var") \ | 67 V(StackTraceVar, ":stack_trace_var") \ |
| 67 V(ListLiteralElement, "list literal element") \ | 68 V(ListLiteralElement, "list literal element") \ |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 friend class SnapshotReader; | 514 friend class SnapshotReader; |
| 514 friend class SnapshotWriter; | 515 friend class SnapshotWriter; |
| 515 friend class ApiMessageReader; | 516 friend class ApiMessageReader; |
| 516 | 517 |
| 517 DISALLOW_COPY_AND_ASSIGN(Symbols); | 518 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 518 }; | 519 }; |
| 519 | 520 |
| 520 } // namespace dart | 521 } // namespace dart |
| 521 | 522 |
| 522 #endif // VM_SYMBOLS_H_ | 523 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |