| 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);
|
| }
|
|
|