| Index: tools/dom/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| index 287151fb05929ae1a3f423108b80287914afe28f..b40cdb329b5a7c2fce0c049a7f33f0dcfb565fd8 100644
|
| --- a/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| @@ -249,8 +249,7 @@ $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| /**
|
| * Print out a String representation of this Node.
|
| */
|
| - String toString() => localName == null ?
|
| - (nodeValue == null ? super.toString() : nodeValue) : localName;
|
| + String toString() => nodeValue == null ? super.toString() : nodeValue;
|
|
|
| /**
|
| * Binds the attribute [name] to the [path] of the [model].
|
|
|