blob: 8be533c85d44ad2d200940277102ae762f9c9a50 [file] [log] [blame]
import 'dart:async';
class Node {
Node(this.name, [this.nested]) {}
String toString() => '<$name:[${nested?.join(', ')}]>';
final List<Node> nested;
final String name;
toSimpleString() {}
}
void main() async {}