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

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: 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') | runtime/vm/dart_api_message.cc » ('J')
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 4d8772fb7a5213e1b397758057c1ee8a87e75925..dccb9db16bc78b9aee383dcbf2e1922b2e7fff5b 100755
--- a/runtime/include/dart_api.h
+++ b/runtime/include/dart_api.h
@@ -548,6 +548,7 @@ struct Dart_CObject {
kNull = 0,
kBool,
kInt32,
+ kBigint,
kDouble,
kString,
kArray,
@@ -559,6 +560,7 @@ struct Dart_CObject {
int32_t as_int32;
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') | runtime/vm/dart_api_message.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698