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

Unified Diff: runtime/vm/snapshot.h

Issue 10964058: Support redirecting factory constructors in the VM (issue 3969). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
===================================================================
--- runtime/vm/snapshot.h (revision 12790)
+++ runtime/vm/snapshot.h (working copy)
@@ -38,6 +38,7 @@
class RawField;
class RawFourByteString;
class RawClosureData;
+class RawRedirectionData;
class RawFunction;
class RawGrowableObjectArray;
class RawImmutableArray;
@@ -250,6 +251,7 @@
RawTypeParameter* NewTypeParameter();
RawPatchClass* NewPatchClass();
RawClosureData* NewClosureData();
+ RawRedirectionData* NewRedirectionData();
RawFunction* NewFunction();
RawField* NewField();
RawLibrary* NewLibrary();
@@ -319,6 +321,7 @@
friend class ContextScope;
friend class Field;
friend class ClosureData;
+ friend class RedirectionData;
friend class Function;
friend class GrowableObjectArray;
friend class ImmutableArray;

Powered by Google App Engine
This is Rietveld 408576698