| 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 6be2882b7bcc77ac384753a5376af03c02520628..4b2b85a5211666e3259b3e5557e2ef44e869af10 100644
|
| --- a/lib/html/templates/html/impl/impl_Element.darttemplate
|
| +++ b/lib/html/templates/html/impl/impl_Element.darttemplate
|
| @@ -738,9 +738,11 @@ class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| var xtag;
|
|
|
| $if DARTIUM
|
| - noSuchMethod(String name, List args) {
|
| + noSuchMethod(InvocationMirror invocation) {
|
| if (dynamicUnknownElementDispatcher == null) {
|
| - throw new NoSuchMethodError(this, name, args);
|
| + throw new NoSuchMethodError(this, invocation.methodName,
|
| + invocation.positionalArguments,
|
| + invocation.namedArguments);
|
| } else {
|
| return dynamicUnknownElementDispatcher(this, name, args);
|
| }
|
|
|