| Index: lib/runtime/dart/math.js
|
| diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js
|
| index 7b93333fc435148e14991c7f762945e06e8d63d3..c0969b6c7aef7dfbd12bb5777e3e0cfcebfa2cf4 100644
|
| --- a/lib/runtime/dart/math.js
|
| +++ b/lib/runtime/dart/math.js
|
| @@ -31,7 +31,7 @@ var _js_helper = dart.lazyImport(_js_helper);
|
| return `Point(${this.x}, ${this.y})`;
|
| }
|
| ['=='](other) {
|
| - if (!dart.is(other, Point))
|
| + if (!dart.is(other, Point$()))
|
| return false;
|
| return dart.notNull(dart.equals(this.x, dart.dload(other, 'x'))) && dart.notNull(dart.equals(this.y, dart.dload(other, 'y')));
|
| }
|
|
|