| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 V(AsyncCompleter, ":async_completer") \ | 74 V(AsyncCompleter, ":async_completer") \ |
| 75 V(AsyncOperation, ":async_op") \ | 75 V(AsyncOperation, ":async_op") \ |
| 76 V(AsyncOperationParam, ":async_result") \ | 76 V(AsyncOperationParam, ":async_result") \ |
| 77 V(AsyncOperationErrorParam, ":async_error_param") \ | 77 V(AsyncOperationErrorParam, ":async_error_param") \ |
| 78 V(AsyncCatchHelper, "_asyncCatchHelper") \ | 78 V(AsyncCatchHelper, "_asyncCatchHelper") \ |
| 79 V(Await, "await") \ | 79 V(Await, "await") \ |
| 80 V(AwaitContextVar, ":await_ctx_var") \ | 80 V(AwaitContextVar, ":await_ctx_var") \ |
| 81 V(AwaitJumpVar, ":await_jump_var") \ | 81 V(AwaitJumpVar, ":await_jump_var") \ |
| 82 V(Future, "Future") \ | 82 V(Future, "Future") \ |
| 83 V(FutureConstructor, "Future.") \ | 83 V(FutureConstructor, "Future.") \ |
| 84 V(FutureValue, "Future.value") \ |
| 84 V(FutureThen, "then") \ | 85 V(FutureThen, "then") \ |
| 85 V(FutureCatchError, "catchError") \ | 86 V(FutureCatchError, "catchError") \ |
| 86 V(Completer, "Completer") \ | 87 V(Completer, "Completer") \ |
| 87 V(CompleterComplete, "complete") \ | 88 V(CompleterComplete, "complete") \ |
| 88 V(CompleterCompleteError, "completeError") \ | 89 V(CompleterCompleteError, "completeError") \ |
| 89 V(CompleterConstructor, "Completer.") \ | 90 V(CompleterConstructor, "Completer.") \ |
| 90 V(CompleterFuture, "future") \ | 91 V(CompleterFuture, "future") \ |
| 91 V(Native, "native") \ | 92 V(Native, "native") \ |
| 92 V(Class, "Class") \ | 93 V(Class, "Class") \ |
| 93 V(Null, "Null") \ | 94 V(Null, "Null") \ |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 friend class SnapshotReader; | 515 friend class SnapshotReader; |
| 515 friend class SnapshotWriter; | 516 friend class SnapshotWriter; |
| 516 friend class ApiMessageReader; | 517 friend class ApiMessageReader; |
| 517 | 518 |
| 518 DISALLOW_COPY_AND_ASSIGN(Symbols); | 519 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 519 }; | 520 }; |
| 520 | 521 |
| 521 } // namespace dart | 522 } // namespace dart |
| 522 | 523 |
| 523 #endif // VM_SYMBOLS_H_ | 524 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |