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

Unified Diff: vm/snapshot.h

Issue 9835074: Fix for issue 2233 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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: vm/snapshot.h
===================================================================
--- vm/snapshot.h (revision 5763)
+++ vm/snapshot.h (working copy)
@@ -24,6 +24,7 @@
class Object;
class ObjectStore;
class RawArray;
+class RawBigint;
class RawClass;
class RawContext;
class RawDouble;
@@ -365,6 +366,7 @@
RawContext* NewContext(intptr_t num_variables);
RawClass* NewClass(int value);
RawMint* NewMint(int64_t value);
+ RawBigint* NewBigint(const char* hex_string);
RawDouble* NewDouble(double value);
RawUnresolvedClass* NewUnresolvedClass();
RawType* NewType();

Powered by Google App Engine
This is Rietveld 408576698