Chromium Code Reviews| Index: lib/runtime/dart/_interceptors.js |
| diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js |
| index 2d98f0c6c88a97ab9e9d4ac875b88ba03c51d59a..67f79fcef00b981bd916da7b60535afec3f3cebd 100644 |
| --- a/lib/runtime/dart/_interceptors.js |
| +++ b/lib/runtime/dart/_interceptors.js |
| @@ -1020,7 +1020,7 @@ var _interceptors; |
| return core.Null; |
| } |
| noSuchMethod(invocation) { |
| - return super.noSuchMethod(invocation); |
| + return dart.noSuchMethod(super, invocation); |
|
Jennifer Messerly
2015/04/23 19:01:41
this doesn't seem like it would work?
vsm
2015/04/23 20:35:55
Ahh, forgot this helper. :-)
|
| } |
| } |
| JSNull[dart.implements] = () => [core.Null]; |