Chromium Code Reviews| Index: runtime/include/dart_api.h |
| diff --git a/runtime/include/dart_api.h b/runtime/include/dart_api.h |
| index af5f97797c174d925f6e1e89cb09d4e823b05017..6239ba4dc72e91f6b6c48c8eddfbd87eae389bca 100755 |
| --- a/runtime/include/dart_api.h |
| +++ b/runtime/include/dart_api.h |
| @@ -1399,6 +1399,16 @@ DART_EXPORT Dart_Handle Dart_NewInteger(int64_t value); |
| /** |
| * Returns an Integer with the provided value. |
| * |
| + * \param value The value of the integer. |
|
siva
2015/04/14 17:42:45
Unsigned value of the integer
rmacnak
2015/04/14 17:51:45
Done.
|
| + * |
| + * \return The Integer object if no error occurs. Otherwise returns |
| + * an error handle. |
| + */ |
| +DART_EXPORT Dart_Handle Dart_NewIntegerFromUint64(uint64_t value); |
| + |
| +/** |
| + * Returns an Integer with the provided value. |
| + * |
| * \param value The value of the integer represented as a C string |
| * containing a hexadecimal number. |
| * |