blob: 9fc36c15b7c3a802577e8c5285eebd6c143b5fae [file] [log] [blame]
// @dart = 2.6
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() {}
}