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; |
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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 const char* exception_msg_; // Message associated with exception. | 544 const char* exception_msg_; // Message associated with exception. |
542 | 545 |
543 friend class RawArray; | 546 friend class RawArray; |
544 friend class RawClass; | 547 friend class RawClass; |
545 friend class RawClosureData; | 548 friend class RawClosureData; |
546 friend class RawGrowableObjectArray; | 549 friend class RawGrowableObjectArray; |
547 friend class RawImmutableArray; | 550 friend class RawImmutableArray; |
548 friend class RawJSRegExp; | 551 friend class RawJSRegExp; |
549 friend class RawLibrary; | 552 friend class RawLibrary; |
550 friend class RawLiteralToken; | 553 friend class RawLiteralToken; |
| 554 friend class RawReceivePort; |
551 friend class RawScript; | 555 friend class RawScript; |
552 friend class RawStacktrace; | 556 friend class RawStacktrace; |
553 friend class RawTokenStream; | 557 friend class RawTokenStream; |
554 friend class RawTypeArguments; | 558 friend class RawTypeArguments; |
555 friend class RawMirrorReference; | 559 friend class RawMirrorReference; |
556 friend class SnapshotWriterVisitor; | 560 friend class SnapshotWriterVisitor; |
557 friend class RawUserTag; | 561 friend class RawUserTag; |
558 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter); | 562 DISALLOW_COPY_AND_ASSIGN(SnapshotWriter); |
559 }; | 563 }; |
560 | 564 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 private: | 635 private: |
632 SnapshotWriter* writer_; | 636 SnapshotWriter* writer_; |
633 bool as_references_; | 637 bool as_references_; |
634 | 638 |
635 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); | 639 DISALLOW_COPY_AND_ASSIGN(SnapshotWriterVisitor); |
636 }; | 640 }; |
637 | 641 |
638 } // namespace dart | 642 } // namespace dart |
639 | 643 |
640 #endif // VM_SNAPSHOT_H_ | 644 #endif // VM_SNAPSHOT_H_ |
OLD | NEW |