combine method

  1. @override
bool combine(
  1. Node other
)
override

Implementation

@override
bool combine(Node other) {
  if (other is StrLine) {
    text += other.text;
    return true;
  }

  return false;
}