| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 V(SavedContextVar, ":saved_context_var") \ | 54 V(SavedContextVar, ":saved_context_var") \ |
| 55 V(ExceptionVar, ":exception_var") \ | 55 V(ExceptionVar, ":exception_var") \ |
| 56 V(StacktraceVar, ":stacktrace_var") \ | 56 V(StacktraceVar, ":stacktrace_var") \ |
| 57 V(ListLiteralElement, "list literal element") \ | 57 V(ListLiteralElement, "list literal element") \ |
| 58 V(ForInIter, ":for-in-iter") \ | 58 V(ForInIter, ":for-in-iter") \ |
| 59 V(Library, "library") \ | 59 V(Library, "library") \ |
| 60 V(Import, "import") \ | 60 V(Import, "import") \ |
| 61 V(Source, "source") \ | 61 V(Source, "source") \ |
| 62 V(Class, "Class") \ | 62 V(Class, "Class") \ |
| 63 V(Null, "Null") \ | 63 V(Null, "Null") \ |
| 64 V(Dynamic, "Dynamic") \ | 64 V(Dynamic, "dynamic") \ |
| 65 V(Void, "void") \ | 65 V(Void, "void") \ |
| 66 V(UnresolvedClass, "UnresolvedClass") \ | 66 V(UnresolvedClass, "UnresolvedClass") \ |
| 67 V(Type, "_Type") \ | 67 V(Type, "_Type") \ |
| 68 V(TypeParameter, "_TypeParameter") \ | 68 V(TypeParameter, "_TypeParameter") \ |
| 69 V(TypeArguments, "TypeArguments") \ | 69 V(TypeArguments, "TypeArguments") \ |
| 70 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 70 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
| 71 V(PatchClass, "PatchClass") \ | 71 V(PatchClass, "PatchClass") \ |
| 72 V(Function, "Function") \ | 72 V(Function, "Function") \ |
| 73 V(ClosureData, "ClosureData") \ | 73 V(ClosureData, "ClosureData") \ |
| 74 V(RedirectionData, "RedirectionData") \ | 74 V(RedirectionData, "RedirectionData") \ |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 friend class SnapshotReader; | 221 friend class SnapshotReader; |
| 222 friend class SnapshotWriter; | 222 friend class SnapshotWriter; |
| 223 friend class ApiMessageReader; | 223 friend class ApiMessageReader; |
| 224 | 224 |
| 225 DISALLOW_COPY_AND_ASSIGN(Symbols); | 225 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 226 }; | 226 }; |
| 227 | 227 |
| 228 } // namespace dart | 228 } // namespace dart |
| 229 | 229 |
| 230 #endif // VM_SYMBOLS_H_ | 230 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |