Index: lib/src/info.dart |
diff --git a/lib/src/info.dart b/lib/src/info.dart |
index d52dbee0df9052269637b34d44e2858776f18fc5..80749853d6137a5984821feb685e113ca058763e 100644 |
--- a/lib/src/info.dart |
+++ b/lib/src/info.dart |
@@ -193,9 +193,6 @@ class ComponentInfo extends LibraryInfo implements ComponentSummary { |
ClassDeclaration get classDeclaration => _classDeclaration; |
ClassDeclaration _classDeclaration; |
- /** Component's <element> element. */ |
- Element elementNode; |
- |
// TODO(terry): Remove once we stop mangling CSS selectors. |
/** CSS selectors scoped. */ |
bool scoped = false; |
@@ -243,7 +240,7 @@ class ComponentInfo extends LibraryInfo implements ComponentSummary { |
// pretend the user wrote it as inlined code. |
if (userCode == null) { |
var superclass = extendsComponent != null ? extendsComponent.className |
- : 'autogenerated.WebComponent'; |
+ : 'autogenerated.PolymerElement'; |
inlinedCode = new DartCodeInfo(null, null, [], |
'class $className extends $superclass {\n}', null); |
} |