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