| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(GetIterator, "iterator") \ | 58 V(GetIterator, "iterator") \ |
| 59 V(NoSuchMethod, "noSuchMethod") \ | 59 V(NoSuchMethod, "noSuchMethod") \ |
| 60 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 60 V(SavedCurrentContextVar, ":saved_current_context_var") \ |
| 61 V(SavedEntryContextVar, ":saved_entry_context_var") \ | 61 V(SavedEntryContextVar, ":saved_entry_context_var") \ |
| 62 V(SavedTryContextVar, ":saved_try_context_var") \ | 62 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 63 V(ExceptionParameter, ":exception") \ |
| 64 V(StackTraceParameter, ":stack_trace") \ |
| 63 V(ExceptionVar, ":exception_var") \ | 65 V(ExceptionVar, ":exception_var") \ |
| 64 V(StackTraceVar, ":stack_trace_var") \ | 66 V(StackTraceVar, ":stack_trace_var") \ |
| 65 V(ListLiteralElement, "list literal element") \ | 67 V(ListLiteralElement, "list literal element") \ |
| 66 V(ForInIter, ":for-in-iter") \ | 68 V(ForInIter, ":for-in-iter") \ |
| 67 V(Library, "library") \ | 69 V(Library, "library") \ |
| 68 V(LoadLibrary, "loadLibrary") \ | 70 V(LoadLibrary, "loadLibrary") \ |
| 69 V(_LibraryPrefix, "_LibraryPrefix") \ | 71 V(_LibraryPrefix, "_LibraryPrefix") \ |
| 70 V(Async, "async") \ | 72 V(Async, "async") \ |
| 71 V(AsyncCompleter, ":async_completer") \ | 73 V(AsyncCompleter, ":async_completer") \ |
| 72 V(AsyncOperation, ":async_op") \ | 74 V(AsyncOperation, ":async_op") \ |
| 73 V(AsyncOperationParam, ":async_result") \ | 75 V(AsyncOperationParam, ":async_result") \ |
| 76 V(AsyncOperationErrorParam, ":async_error_param") \ |
| 77 V(AsyncCatchHelper, "_asyncCatchHelper") \ |
| 74 V(Await, "await") \ | 78 V(Await, "await") \ |
| 75 V(AwaitContextVar, ":await_ctx_var") \ | 79 V(AwaitContextVar, ":await_ctx_var") \ |
| 76 V(AwaitJumpVar, ":await_jump_var") \ | 80 V(AwaitJumpVar, ":await_jump_var") \ |
| 77 V(Future, "Future") \ | 81 V(Future, "Future") \ |
| 78 V(FutureConstructor, "Future.") \ | 82 V(FutureConstructor, "Future.") \ |
| 79 V(FutureThen, "then") \ | 83 V(FutureThen, "then") \ |
| 84 V(FutureCatchError, "catchError") \ |
| 80 V(Completer, "Completer") \ | 85 V(Completer, "Completer") \ |
| 81 V(CompleterComplete, "complete") \ | 86 V(CompleterComplete, "complete") \ |
| 87 V(CompleterCompleteError, "completeError") \ |
| 82 V(CompleterConstructor, "Completer.") \ | 88 V(CompleterConstructor, "Completer.") \ |
| 83 V(CompleterFuture, "future") \ | 89 V(CompleterFuture, "future") \ |
| 84 V(Native, "native") \ | 90 V(Native, "native") \ |
| 85 V(Class, "Class") \ | 91 V(Class, "Class") \ |
| 86 V(Null, "Null") \ | 92 V(Null, "Null") \ |
| 87 V(Dynamic, "dynamic") \ | 93 V(Dynamic, "dynamic") \ |
| 88 V(Void, "void") \ | 94 V(Void, "void") \ |
| 89 V(UnresolvedClass, "UnresolvedClass") \ | 95 V(UnresolvedClass, "UnresolvedClass") \ |
| 90 V(Type, "_Type") \ | 96 V(Type, "_Type") \ |
| 91 V(TypeRef, "_TypeRef") \ | 97 V(TypeRef, "_TypeRef") \ |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 friend class SnapshotReader; | 509 friend class SnapshotReader; |
| 504 friend class SnapshotWriter; | 510 friend class SnapshotWriter; |
| 505 friend class ApiMessageReader; | 511 friend class ApiMessageReader; |
| 506 | 512 |
| 507 DISALLOW_COPY_AND_ASSIGN(Symbols); | 513 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 508 }; | 514 }; |
| 509 | 515 |
| 510 } // namespace dart | 516 } // namespace dart |
| 511 | 517 |
| 512 #endif // VM_SYMBOLS_H_ | 518 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |