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

Unified Diff: lib/html/templates/html/impl/impl_Element.darttemplate

Issue 11339042: Revert "Change signature of noSuchMethod to take an InvocationMirror." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « lib/html/dartium/html_dartium.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/templates/html/impl/impl_Element.darttemplate
diff --git a/lib/html/templates/html/impl/impl_Element.darttemplate b/lib/html/templates/html/impl/impl_Element.darttemplate
index 4b2b85a5211666e3259b3e5557e2ef44e869af10..6be2882b7bcc77ac384753a5376af03c02520628 100644
--- a/lib/html/templates/html/impl/impl_Element.darttemplate
+++ b/lib/html/templates/html/impl/impl_Element.darttemplate
@@ -738,11 +738,9 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
var xtag;
$if DARTIUM
- noSuchMethod(InvocationMirror invocation) {
+ noSuchMethod(String name, List args) {
if (dynamicUnknownElementDispatcher == null) {
- throw new NoSuchMethodError(this, invocation.methodName,
- invocation.positionalArguments,
- invocation.namedArguments);
+ throw new NoSuchMethodError(this, name, args);
} else {
return dynamicUnknownElementDispatcher(this, name, args);
}
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698