Index: lib/runtime/dart/math.js |
diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js |
index 7b93333fc435148e14991c7f762945e06e8d63d3..9ede3c86ee5b72f809c3d8923b72a8c26ec7cb6c 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$(dart.dynamic))) |
return false; |
return dart.notNull(dart.equals(this.x, dart.dload(other, 'x'))) && dart.notNull(dart.equals(this.y, dart.dload(other, 'y'))); |
} |