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

Unified Diff: runtime/include/dart_api.h

Issue 9363023: Add support for big integers to the native message format (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from asiva@ Created 8 years, 10 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
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/include/dart_api.h
diff --git a/runtime/include/dart_api.h b/runtime/include/dart_api.h
index 47da873c5e014d7adb1428abc99257d0a6aab0a0..e0c95f5aa966d1fc49f20f3b0686df9877ee7dd6 100755
--- a/runtime/include/dart_api.h
+++ b/runtime/include/dart_api.h
@@ -549,6 +549,7 @@ struct Dart_CObject {
kBool,
kInt32,
kInt64,
+ kBigint,
kDouble,
kString,
kArray,
@@ -562,6 +563,7 @@ struct Dart_CObject {
int64_t as_int64;
double as_double;
char* as_string;
+ char* as_bigint;
struct {
int length;
Dart_CObject** values;
« no previous file with comments | « no previous file | runtime/vm/dart_api_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698