Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Unified Diff: lib/runtime/dart/_interceptors.js

Issue 1100633006: Generate static calls for Object fields and methods (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/runtime/dart/_internal.js » ('j') | lib/runtime/dart/_internal.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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];
« no previous file with comments | « no previous file | lib/runtime/dart/_internal.js » ('j') | lib/runtime/dart/_internal.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698