| Index: utils/css/tree.dart
|
| ===================================================================
|
| --- utils/css/tree.dart (revision 12654)
|
| +++ utils/css/tree.dart (working copy)
|
| @@ -126,7 +126,7 @@
|
|
|
| visit(TreeVisitor visitor) => visitor.visitSimpleSelectorSequence(this);
|
|
|
| - String toString() => _combinatorToString() + _selector.toString();
|
| + String toString() => "${_combinatorToString()}${_selector.toString()}";
|
| }
|
|
|
| /* All other selectors (element, #id, .class, attribute, pseudo, negation,
|
| @@ -336,7 +336,7 @@
|
| visit(TreeVisitor visitor) => visitor.visitRuleSet(this);
|
|
|
| String toString() =>
|
| - "\n${_selectorGroup.toString()} {\n" +
|
| + "\n${_selectorGroup.toString()} {\n"
|
| "${_declarationGroup.toString()}}\n";
|
| }
|
|
|
| @@ -1265,7 +1265,7 @@
|
| }
|
|
|
| void visitIdentifier(Identifier node) {
|
| - output.heading('Identifier(' + output.toValue(node.name) + ")", node.span);
|
| + output.heading('Identifier(${output.toValue(node.name)})', node.span);
|
| }
|
|
|
| void visitWildcard(Wildcard node) {
|
|
|