File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ class XmlElement extends XmlBranch implements XmlNamed {
15
15
*/
16
16
XmlElement (XmlName name, Iterable <XmlAttribute > attributes,
17
17
Iterable <XmlNode > children)
18
- : super (children) ,
19
- name = name ,
20
- attributes = attributes. toList (growable : false ) {
18
+ : name = name ,
19
+ attributes = attributes. toList (growable : false ) ,
20
+ super (children ) {
21
21
assert (this .name._parent == null );
22
22
this .name._parent = this ;
23
23
for (var attribute in this .attributes) {
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ abstract class XmlName extends Object
63
63
accept (XmlVisitor visitor) => visitor.visitName (this );
64
64
65
65
@override
66
- bool operator == (Object other) => other is XmlName &&
66
+ bool operator == (other) => other is XmlName &&
67
67
other.local == local &&
68
68
other.namespaceUri == namespaceUri;
69
69
You can’t perform that action at this time.
0 commit comments