| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 55 V(SavedCurrentContextVar, ":saved_current_context_var") \ |
| 56 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 56 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
| 57 V(SavedTryContextVar, ":saved_try_context_var") \ | 57 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 58 V(ExceptionVar, ":exception_var") \ | 58 V(ExceptionVar, ":exception_var") \ |
| 59 V(StacktraceVar, ":stacktrace_var") \ | 59 V(StacktraceVar, ":stacktrace_var") \ |
| 60 V(ListLiteralElement, "list literal element") \ | 60 V(ListLiteralElement, "list literal element") \ |
| 61 V(ForInIter, ":for-in-iter") \ | 61 V(ForInIter, ":for-in-iter") \ |
| 62 V(ClosureFunctionField, ":function") \ | 62 V(ClosureFunctionField, ":function") \ |
| 63 V(ClosureContextField, ":context") \ | 63 V(ClosureContextField, ":context") \ |
| 64 V(Library, "library") \ | 64 V(Library, "library") \ |
| 65 V(Native, "native") \ |
| 65 V(Import, "import") \ | 66 V(Import, "import") \ |
| 66 V(Source, "source") \ | 67 V(Source, "source") \ |
| 67 V(Class, "Class") \ | 68 V(Class, "Class") \ |
| 68 V(Null, "Null") \ | 69 V(Null, "Null") \ |
| 69 V(Dynamic, "dynamic") \ | 70 V(Dynamic, "dynamic") \ |
| 70 V(Void, "void") \ | 71 V(Void, "void") \ |
| 71 V(UnresolvedClass, "UnresolvedClass") \ | 72 V(UnresolvedClass, "UnresolvedClass") \ |
| 72 V(Type, "_Type") \ | 73 V(Type, "_Type") \ |
| 73 V(TypeParameter, "_TypeParameter") \ | 74 V(TypeParameter, "_TypeParameter") \ |
| 74 V(BoundedType, "_BoundedType") \ | 75 V(BoundedType, "_BoundedType") \ |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 friend class SnapshotReader; | 481 friend class SnapshotReader; |
| 481 friend class SnapshotWriter; | 482 friend class SnapshotWriter; |
| 482 friend class ApiMessageReader; | 483 friend class ApiMessageReader; |
| 483 | 484 |
| 484 DISALLOW_COPY_AND_ASSIGN(Symbols); | 485 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 485 }; | 486 }; |
| 486 | 487 |
| 487 } // namespace dart | 488 } // namespace dart |
| 488 | 489 |
| 489 #endif // VM_SYMBOLS_H_ | 490 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |