| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 V(List, "List") \ | 64 V(List, "List") \ |
| 65 V(ListLiteralFactory, "List._fromLiteral") \ | 65 V(ListLiteralFactory, "List._fromLiteral") \ |
| 66 V(ListFactory, "List.") \ | 66 V(ListFactory, "List.") \ |
| 67 V(Map, "Map") \ | 67 V(Map, "Map") \ |
| 68 V(MapLiteralFactory, "Map._fromLiteral") \ | 68 V(MapLiteralFactory, "Map._fromLiteral") \ |
| 69 V(ImmutableMap, "ImmutableMap") \ | 69 V(ImmutableMap, "ImmutableMap") \ |
| 70 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 70 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 71 V(StringBase, "_StringBase") \ | 71 V(StringBase, "_StringBase") \ |
| 72 V(Interpolate, "_interpolate") \ | 72 V(Interpolate, "_interpolate") \ |
| 73 V(InterpolateSingle, "_interpolateSingle") \ | 73 V(InterpolateSingle, "_interpolateSingle") \ |
| 74 V(iterator, "iterator") \ | 74 V(Iterator, "iterator") \ |
| 75 V(NoSuchMethod, "noSuchMethod") \ | 75 V(NoSuchMethod, "noSuchMethod") \ |
| 76 V(CurrentContextVar, ":current_context_var") \ | 76 V(CurrentContextVar, ":current_context_var") \ |
| 77 V(SavedTryContextVar, ":saved_try_context_var") \ | 77 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 78 V(ExceptionParameter, ":exception") \ | 78 V(ExceptionParameter, ":exception") \ |
| 79 V(StackTraceParameter, ":stack_trace") \ | 79 V(StackTraceParameter, ":stack_trace") \ |
| 80 V(ExceptionVar, ":exception_var") \ | 80 V(ExceptionVar, ":exception_var") \ |
| 81 V(StackTraceVar, ":stack_trace_var") \ | 81 V(StackTraceVar, ":stack_trace_var") \ |
| 82 V(ListLiteralElement, "list literal element") \ | 82 V(ListLiteralElement, "list literal element") \ |
| 83 V(ForInIter, ":for-in-iter") \ | 83 V(ForInIter, ":for-in-iter") \ |
| 84 V(Library, "library") \ | 84 V(Library, "library") \ |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 friend class SnapshotReader; | 582 friend class SnapshotReader; |
| 583 friend class SnapshotWriter; | 583 friend class SnapshotWriter; |
| 584 friend class ApiMessageReader; | 584 friend class ApiMessageReader; |
| 585 | 585 |
| 586 DISALLOW_COPY_AND_ASSIGN(Symbols); | 586 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 587 }; | 587 }; |
| 588 | 588 |
| 589 } // namespace dart | 589 } // namespace dart |
| 590 | 590 |
| 591 #endif // VM_SYMBOLS_H_ | 591 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |