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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 10843022: Partially rollback noSuchMethod for UnknownElement until we figure out code size issue (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/dom/templates/html/impl/impl_UnknownElement.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index d35178dc66ce7dc4962ef21d142f16f950f52948..ba2ab82808f841116b3865f285d496794cf3b82f 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -15328,13 +15328,7 @@ class _UnknownElementImpl extends _ElementImpl implements UnknownElement native
// Hooks to support custom WebComponents.
var xtag;
- noSuchMethod(String name, List args) {
- if (dynamicUnknownElementDispatcher == null) {
- throw new NoSuchMethodException(this, name, args);
- } else {
- return dynamicUnknownElementDispatcher(this, name, args);
- }
- }
+ // TODO(vsm): Implement noSuchMethod or similar for dart2js.
}
class _ValidityStateImpl implements ValidityState native "*ValidityState" {
« no previous file with comments | « lib/dom/templates/html/impl/impl_UnknownElement.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698