compile method

Ast compile(
  1. String text
)

Implementation

Ast compile(String text) {
  return Ast(Parser().parse(text));
}