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(StringBase, "_StringBase") \ | 51 V(StringBase, "_StringBase") \ |
52 V(Interpolate, "_interpolate") \ | 52 V(Interpolate, "_interpolate") \ |
53 V(GetIterator, "iterator") \ | 53 V(GetIterator, "iterator") \ |
54 V(NoSuchMethod, "noSuchMethod") \ | 54 V(NoSuchMethod, "noSuchMethod") \ |
55 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ | 55 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ |
56 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 56 V(SavedCurrentContextVar, ":saved_current_context_var") \ |
57 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 57 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
58 V(SavedTryContextVar, ":saved_try_context_var") \ | 58 V(SavedTryContextVar, ":saved_try_context_var") \ |
59 V(ExceptionVar, ":exception_var") \ | 59 V(ExceptionVar, ":exception_var") \ |
60 V(StacktraceVar, ":stacktrace_var") \ | 60 V(StacktraceVar, ":stacktrace_var") \ |
61 V(ArrayLiteralVar, ":array_literal_var") \ | |
62 V(ListLiteralElement, "list literal element") \ | 61 V(ListLiteralElement, "list literal element") \ |
63 V(ForInIter, ":for-in-iter") \ | 62 V(ForInIter, ":for-in-iter") \ |
64 V(Library, "library") \ | 63 V(Library, "library") \ |
65 V(Import, "import") \ | 64 V(Import, "import") \ |
66 V(Source, "source") \ | 65 V(Source, "source") \ |
67 V(Class, "Class") \ | 66 V(Class, "Class") \ |
68 V(Null, "Null") \ | 67 V(Null, "Null") \ |
69 V(Dynamic, "dynamic") \ | 68 V(Dynamic, "dynamic") \ |
70 V(Void, "void") \ | 69 V(Void, "void") \ |
71 V(UnresolvedClass, "UnresolvedClass") \ | 70 V(UnresolvedClass, "UnresolvedClass") \ |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 friend class SnapshotReader; | 456 friend class SnapshotReader; |
458 friend class SnapshotWriter; | 457 friend class SnapshotWriter; |
459 friend class ApiMessageReader; | 458 friend class ApiMessageReader; |
460 | 459 |
461 DISALLOW_COPY_AND_ASSIGN(Symbols); | 460 DISALLOW_COPY_AND_ASSIGN(Symbols); |
462 }; | 461 }; |
463 | 462 |
464 } // namespace dart | 463 } // namespace dart |
465 | 464 |
466 #endif // VM_SYMBOLS_H_ | 465 #endif // VM_SYMBOLS_H_ |
OLD | NEW |