| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 2cf0f2ab28edbfe557d757fe463668be5fd0ad35..c9d103afd8d4018f1c93f6ab3835811891083121 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -13421,11 +13421,9 @@ class _ElementImpl extends _NodeImpl implements Element {
|
| // Hooks to support custom WebComponents.
|
| var xtag;
|
|
|
| - 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);
|
| }
|
|
|