| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 V(Future, "Future") \ | 82 V(Future, "Future") \ |
| 83 V(FutureConstructor, "Future.") \ | 83 V(FutureConstructor, "Future.") \ |
| 84 V(FutureValue, "Future.value") \ | 84 V(FutureValue, "Future.value") \ |
| 85 V(FutureThen, "then") \ | 85 V(FutureThen, "then") \ |
| 86 V(FutureCatchError, "catchError") \ | 86 V(FutureCatchError, "catchError") \ |
| 87 V(Completer, "Completer") \ | 87 V(Completer, "Completer") \ |
| 88 V(CompleterComplete, "complete") \ | 88 V(CompleterComplete, "complete") \ |
| 89 V(CompleterCompleteError, "completeError") \ | 89 V(CompleterCompleteError, "completeError") \ |
| 90 V(CompleterConstructor, "Completer.") \ | 90 V(CompleterConstructor, "Completer.") \ |
| 91 V(CompleterFuture, "future") \ | 91 V(CompleterFuture, "future") \ |
| 92 V(StreamIterator, "StreamIterator") \ |
| 93 V(StreamIteratorConstructor, "StreamIterator.") \ |
| 92 V(Native, "native") \ | 94 V(Native, "native") \ |
| 93 V(Class, "Class") \ | 95 V(Class, "Class") \ |
| 94 V(Null, "Null") \ | 96 V(Null, "Null") \ |
| 95 V(Dynamic, "dynamic") \ | 97 V(Dynamic, "dynamic") \ |
| 96 V(Void, "void") \ | 98 V(Void, "void") \ |
| 97 V(UnresolvedClass, "UnresolvedClass") \ | 99 V(UnresolvedClass, "UnresolvedClass") \ |
| 98 V(Type, "_Type") \ | 100 V(Type, "_Type") \ |
| 99 V(TypeRef, "_TypeRef") \ | 101 V(TypeRef, "_TypeRef") \ |
| 100 V(TypeParameter, "_TypeParameter") \ | 102 V(TypeParameter, "_TypeParameter") \ |
| 101 V(BoundedType, "_BoundedType") \ | 103 V(BoundedType, "_BoundedType") \ |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 friend class SnapshotReader; | 517 friend class SnapshotReader; |
| 516 friend class SnapshotWriter; | 518 friend class SnapshotWriter; |
| 517 friend class ApiMessageReader; | 519 friend class ApiMessageReader; |
| 518 | 520 |
| 519 DISALLOW_COPY_AND_ASSIGN(Symbols); | 521 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 520 }; | 522 }; |
| 521 | 523 |
| 522 } // namespace dart | 524 } // namespace dart |
| 523 | 525 |
| 524 #endif // VM_SYMBOLS_H_ | 526 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |