Index: client/dom/templates/html/frog/impl_Console.darttemplate |
diff --git a/client/dom/templates/html/frog/impl_Console.darttemplate b/client/dom/templates/html/frog/impl_Console.darttemplate |
index 8a41b1d1245e00742ac3a7c3a076397c285b27c1..d0c0b5d64ac5e8cb2bc40e09c554c56232a6a515 100644 |
--- a/client/dom/templates/html/frog/impl_Console.darttemplate |
+++ b/client/dom/templates/html/frog/impl_Console.darttemplate |
@@ -3,13 +3,8 @@ |
// BSD-style license that can be found in the LICENSE file. |
class $CLASSNAME |
- // Implement DOMType directly. Console is sometimes a singleton |
- // bag-of-properties without a prototype, so it can't inherit from |
- // DOMTypeJs. |
- implements Console, DOMType |
+ // Console is sometimes a singleton bag-of-properties without a prototype. |
+ implements Console |
native "=(typeof console == 'undefined' ? {} : console)" { |
$!MEMBERS |
- |
- // Keep these in sync with frog_DOMTypeJs.dart. |
- String get typeName() native; |
} |