parse method

List<Node> parse(
  1. String text
)

Parses the given text to a series of AST nodes.

Implementation

List<Node> parse(String text) => parseLineList(text.toLines());