Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: runtime/vm/snapshot.h

Issue 1965823002: Initial isolate reload support (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/snapshot.h
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index 3bd438e3473b3bac27ebae5c8ec7073474450729..da26ca11dc62aad0fa63e769fd41b46ec7f5c3a8 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -405,6 +405,7 @@ class SnapshotReader : public BaseReader {
ClassTable* class_table() const { return isolate()->class_table(); }
PassiveObject* PassiveObjectHandle() { return &pobj_; }
Array* ArrayHandle() { return &array_; }
+ Class* ClassHandle() { return &cls_; }
String* StringHandle() { return &str_; }
AbstractType* TypeHandle() { return &type_; }
TypeArguments* TypeArgumentsHandle() { return &type_arguments_; }
@@ -1088,7 +1089,6 @@ class SnapshotWriter : public BaseWriter {
friend class RawGrowableObjectArray;
friend class RawImmutableArray;
friend class RawInstructions;
- friend class RawRegExp;
friend class RawLibrary;
friend class RawLinkedHashMap;
friend class RawLiteralToken;
@@ -1096,11 +1096,14 @@ class SnapshotWriter : public BaseWriter {
friend class RawMirrorReference;
friend class RawObjectPool;
friend class RawReceivePort;
+ friend class RawRegExp;
friend class RawScript;
friend class RawStacktrace;
friend class RawSubtypeTestCache;
friend class RawTokenStream;
+ friend class RawType;
friend class RawTypeArguments;
+ friend class RawTypeParameter;
friend class RawUserTag;
friend class SnapshotWriterVisitor;
friend class WriteInlinedObjectVisitor;

Powered by Google App Engine
This is Rietveld 408576698