| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index f129f36a6a2494447c52e7eb5acefcbe68274255..edeaf3396d74d4e472195a94e1cdff2d1eb5ac3a 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -13367,11 +13367,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);
|
| }
|
|
|