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_SNAPSHOT_H_ | 5 #ifndef VM_SNAPSHOT_H_ |
6 #define VM_SNAPSHOT_H_ | 6 #define VM_SNAPSHOT_H_ |
7 | 7 |
8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
9 #include "vm/allocation.h" | 9 #include "vm/allocation.h" |
10 #include "vm/bitfield.h" | 10 #include "vm/bitfield.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 class RawLibrary; | 50 class RawLibrary; |
51 class RawLibraryPrefix; | 51 class RawLibraryPrefix; |
52 class RawNamespace; | 52 class RawNamespace; |
53 class RawLiteralToken; | 53 class RawLiteralToken; |
54 class RawMint; | 54 class RawMint; |
55 class RawObject; | 55 class RawObject; |
56 class RawOneByteString; | 56 class RawOneByteString; |
57 class RawPatchClass; | 57 class RawPatchClass; |
58 class RawScript; | 58 class RawScript; |
59 class RawSmi; | 59 class RawSmi; |
60 class RawCapability; | |
61 class RawReceivePort; | |
62 class RawSendPort; | |
siva
2014/04/23 00:20:31
Why are these forward declarations needed here?
| |
60 class RawStacktrace; | 63 class RawStacktrace; |
61 class RawTokenStream; | 64 class RawTokenStream; |
62 class RawType; | 65 class RawType; |
63 class RawTypeRef; | 66 class RawTypeRef; |
64 class RawTypeParameter; | 67 class RawTypeParameter; |
65 class RawTypeArguments; | 68 class RawTypeArguments; |
66 class RawTwoByteString; | 69 class RawTwoByteString; |
67 class RawUnresolvedClass; | 70 class RawUnresolvedClass; |
68 class String; | 71 class String; |
69 class TokenStream; | 72 class TokenStream; |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
631 private: | 634 private: |
632 SnapshotWriter* writer_; | 635 SnapshotWriter* writer_; |
633 bool as_references_; | 636 bool as_references_; |
634 | 637 |
635 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); | 638 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); |
636 }; | 639 }; |
637 | 640 |
638 } // namespace dart | 641 } // namespace dart |
639 | 642 |
640 #endif // VM_SNAPSHOT_H_ | 643 #endif // VM_SNAPSHOT_H_ |
OLD | NEW |