| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 V(StackTraceVar, ":stack_trace_var") \ | 64 V(StackTraceVar, ":stack_trace_var") \ |
| 65 V(ListLiteralElement, "list literal element") \ | 65 V(ListLiteralElement, "list literal element") \ |
| 66 V(ForInIter, ":for-in-iter") \ | 66 V(ForInIter, ":for-in-iter") \ |
| 67 V(Library, "library") \ | 67 V(Library, "library") \ |
| 68 V(LoadLibrary, "loadLibrary") \ | 68 V(LoadLibrary, "loadLibrary") \ |
| 69 V(_LibraryPrefix, "_LibraryPrefix") \ | 69 V(_LibraryPrefix, "_LibraryPrefix") \ |
| 70 V(Async, "async") \ | 70 V(Async, "async") \ |
| 71 V(AsyncCompleter, ":async_completer") \ | 71 V(AsyncCompleter, ":async_completer") \ |
| 72 V(AsyncOperation, ":async_op") \ | 72 V(AsyncOperation, ":async_op") \ |
| 73 V(AsyncOperationParam, ":async_result") \ | 73 V(AsyncOperationParam, ":async_result") \ |
| 74 V(AwaitContextVar, ":await_ctx_var") \ |
| 75 V(AwaitJumpVar, ":await_jump_var") \ |
| 74 V(Future, "Future") \ | 76 V(Future, "Future") \ |
| 75 V(FutureConstructor, "Future.") \ | 77 V(FutureConstructor, "Future.") \ |
| 76 V(FutureThen, "then") \ | 78 V(FutureThen, "then") \ |
| 77 V(Completer, "Completer") \ | 79 V(Completer, "Completer") \ |
| 78 V(CompleterComplete, "complete") \ | 80 V(CompleterComplete, "complete") \ |
| 79 V(CompleterConstructor, "Completer.") \ | 81 V(CompleterConstructor, "Completer.") \ |
| 80 V(CompleterFuture, "future") \ | 82 V(CompleterFuture, "future") \ |
| 81 V(Native, "native") \ | 83 V(Native, "native") \ |
| 82 V(Class, "Class") \ | 84 V(Class, "Class") \ |
| 83 V(Null, "Null") \ | 85 V(Null, "Null") \ |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 friend class SnapshotReader; | 502 friend class SnapshotReader; |
| 501 friend class SnapshotWriter; | 503 friend class SnapshotWriter; |
| 502 friend class ApiMessageReader; | 504 friend class ApiMessageReader; |
| 503 | 505 |
| 504 DISALLOW_COPY_AND_ASSIGN(Symbols); | 506 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 505 }; | 507 }; |
| 506 | 508 |
| 507 } // namespace dart | 509 } // namespace dart |
| 508 | 510 |
| 509 #endif // VM_SYMBOLS_H_ | 511 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |