leaf method

StringBuffer leaf()

Implementation

StringBuffer leaf() {
  final child = _LeafNode(this);
  _children.add(child);
  return child.buffer;
}