evaluateNodes method

String evaluateNodes(
  1. List<ASTNode> nodes
)

Implementation

String evaluateNodes(List<ASTNode> nodes) {
  for (final node in nodes) {
    if (node is Assignment) continue;
    if (node is Tag) {
      node.accept(this);
    } else {
      currentBuffer.write(node.accept(this));
    }
  }
  return buffer.toString();
}