| Index: runtime/vm/bigint_operations.h
|
| ===================================================================
|
| --- runtime/vm/bigint_operations.h (revision 1042)
|
| +++ runtime/vm/bigint_operations.h (working copy)
|
| @@ -43,6 +43,12 @@
|
| static const char* ToHexCString(const Bigint& bigint,
|
| uword (*allocator)(intptr_t size));
|
|
|
| + // Converts the bigint to a string.
|
| + static const char* ToDecCString(const BIGNUM* bn,
|
| + uword (*allocator)(intptr_t size));
|
| + static const char* ToDecCString(const Bigint& bigint,
|
| + uword (*allocator)(intptr_t size));
|
| +
|
| static bool FitsIntoSmi(const Bigint& bigint);
|
| static RawSmi* ToSmi(const Bigint& bigint);
|
|
|
|
|