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

Unified Diff: runtime/include/dart_native_api.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/include/dart_native_api.h
===================================================================
--- runtime/include/dart_native_api.h (revision 39937)
+++ runtime/include/dart_native_api.h (working copy)
@@ -52,7 +52,11 @@
int64_t as_int64;
double as_double;
char* as_string;
- char* as_bigint;
+ struct {
+ bool neg;
+ intptr_t used;
+ struct _Dart_CObject* digits;
+ } as_bigint;
Dart_Port as_send_port;
struct {
intptr_t length;

Powered by Google App Engine
This is Rietveld 408576698