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

Unified Diff: runtime/vm/snapshot.h

Issue 509153003: New bigint implementation in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 40060)
+++ runtime/vm/snapshot.h (working copy)
@@ -54,6 +54,7 @@
class RawLiteralToken;
class RawMint;
class RawMixinAppType;
+class RawBigint;
class RawNamespace;
class RawObject;
class RawOneByteString;
@@ -290,7 +291,7 @@
RawClass* NewClass(intptr_t class_id);
RawInstance* NewInstance();
RawMint* NewMint(int64_t value);
- RawBigint* NewBigint(const char* hex_string);
+ RawBigint* NewBigint();
RawTypedData* NewTypedData(intptr_t class_id, intptr_t len);
RawDouble* NewDouble(double value);
RawUnresolvedClass* NewUnresolvedClass();
@@ -404,6 +405,7 @@
friend class Library;
friend class LibraryPrefix;
friend class Namespace;
+ friend class Bigint;
friend class LiteralToken;
friend class PatchClass;
friend class Script;

Powered by Google App Engine
This is Rietveld 408576698