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

Unified Diff: runtime/vm/bigint_operations.h

Issue 9536016: Implement BigintOperations::ToDecimalCString. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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
« no previous file with comments | « no previous file | runtime/vm/bigint_operations.cc » ('j') | runtime/vm/bigint_operations.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bigint_operations.h
diff --git a/runtime/vm/bigint_operations.h b/runtime/vm/bigint_operations.h
index f79e7aebc80d4706de2de7d0a6eb595ffd110e20..39050df06e625b2f0c98d5d4e02443bb705df9c2 100644
--- a/runtime/vm/bigint_operations.h
+++ b/runtime/vm/bigint_operations.h
@@ -43,6 +43,9 @@ class BigintOperations : public AllStatic {
static const char* ToHexCString(const Bigint& bigint,
uword (*allocator)(intptr_t size));
+ static const char* ToDecimalCString(const Bigint& bigint,
+ uword (*allocator)(intptr_t size));
+
static bool FitsIntoSmi(const Bigint& bigint);
static RawSmi* ToSmi(const Bigint& bigint);
« no previous file with comments | « no previous file | runtime/vm/bigint_operations.cc » ('j') | runtime/vm/bigint_operations.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698