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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(InterpolateSingle, "_interpolateSingle") \ |
59 V(GetIterator, "iterator") \ | 59 V(GetIterator, "iterator") \ |
60 V(NoSuchMethod, "noSuchMethod") \ | 60 V(NoSuchMethod, "noSuchMethod") \ |
61 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 61 V(CurrentContextVar, ":current_context_var") \ |
62 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 62 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
63 V(SavedTryContextVar, ":saved_try_context_var") \ | 63 V(SavedTryContextVar, ":saved_try_context_var") \ |
64 V(ExceptionParameter, ":exception") \ | 64 V(ExceptionParameter, ":exception") \ |
65 V(StackTraceParameter, ":stack_trace") \ | 65 V(StackTraceParameter, ":stack_trace") \ |
66 V(ExceptionVar, ":exception_var") \ | 66 V(ExceptionVar, ":exception_var") \ |
67 V(StackTraceVar, ":stack_trace_var") \ | 67 V(StackTraceVar, ":stack_trace_var") \ |
68 V(ListLiteralElement, "list literal element") \ | 68 V(ListLiteralElement, "list literal element") \ |
69 V(ForInIter, ":for-in-iter") \ | 69 V(ForInIter, ":for-in-iter") \ |
70 V(Library, "library") \ | 70 V(Library, "library") \ |
71 V(LoadLibrary, "loadLibrary") \ | 71 V(LoadLibrary, "loadLibrary") \ |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 friend class SnapshotReader; | 517 friend class SnapshotReader; |
518 friend class SnapshotWriter; | 518 friend class SnapshotWriter; |
519 friend class ApiMessageReader; | 519 friend class ApiMessageReader; |
520 | 520 |
521 DISALLOW_COPY_AND_ASSIGN(Symbols); | 521 DISALLOW_COPY_AND_ASSIGN(Symbols); |
522 }; | 522 }; |
523 | 523 |
524 } // namespace dart | 524 } // namespace dart |
525 | 525 |
526 #endif // VM_SYMBOLS_H_ | 526 #endif // VM_SYMBOLS_H_ |
OLD | NEW |