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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 11336011: 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:
Download patch
« no previous file with comments | « lib/core/object.dart ('k') | lib/html/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « lib/core/object.dart ('k') | lib/html/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698