[vm,libs] Strong mode fix to bigint.dart

Change-Id: I5a7f9d750ec3615f2050e7ef56cf406804179139
Reviewed-on: https://dart-review.googlesource.com/25141
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
Commit-Queue: Paul Berry <paulberry@google.com>
This commit is contained in:
Paul Berry 2017-11-30 22:51:46 +00:00 committed by commit-bot@chromium.org
parent 7f89be22aa
commit 10ec335464

View file

@ -1843,7 +1843,7 @@ class _Bigint extends _IntegerImplementation {
if (m == 1) return 0;
final mAsBigint = m._toBigint();
int t = this;
if (t._neg || (t._absCompare(mAsBigint) >= 0)) {
if (this._neg || (this._absCompare(mAsBigint) >= 0)) {
t %= mAsBigint;
t = t._toBigint();
}