blob: d47e7852adf3e80cd65c63c82d5ec4aecd84105a [file] [log] [blame]
// @dart = 2.9
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 {}