evaluateNodesAsync method
Implementation
Future<dynamic> evaluateNodesAsync(List<ASTNode> nodes) async {
for (final node in nodes) {
if (node is Assignment) continue;
if (node is Tag) {
await node.acceptAsync(this);
} else {
currentBuffer.write(await node.acceptAsync(this));
}
}
return buffer.toString();
}