| Index: runtime/platform/utils.h
|
| diff --git a/runtime/platform/utils.h b/runtime/platform/utils.h
|
| index 796fbbe33a7248776b8e9df7e46bdcf7eaac0a0e..54ebf4dd410638cda6854a2d27106648e78fd5fe 100644
|
| --- a/runtime/platform/utils.h
|
| +++ b/runtime/platform/utils.h
|
| @@ -204,7 +204,7 @@ class Utils {
|
|
|
| // dart2js represents integers as double precision floats, which can
|
| // represent anything in the range -2^53 ... 2^53.
|
| - static bool IsJavascriptInt(int64_t value) {
|
| + static bool IsJavascriptInt64(int64_t value) {
|
| return ((-0x20000000000000LL <= value) && (value <= 0x20000000000000LL));
|
| }
|
| static bool IsJavascriptInt(intptr_t value) {
|
|
|