| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 105de78e6e086fe44e4a960c186c3c9238e800f7..84573dd74838202957876db183d3513ade50aff2 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -6436,7 +6436,7 @@ class Integer : public Number {
|
| static RawInteger* New(int64_t value, Heap::Space space = Heap::kNew);
|
|
|
| // Returns true iff the given uint64_t value is representable as Dart integer.
|
| - static bool IsValidUint64(uint64_t value);
|
| + static bool IsValueInRange(uint64_t value);
|
|
|
| virtual bool OperatorEquals(const Instance& other) const {
|
| return Equals(other);
|
|
|