parse

func parse(source: String) -> String

Renders the canonical validation dump for a strict whole-file parse.

Hard parse failure remains visible in the dump alongside any successfully produced prefix. Use parse_lenient for the editor contract that converts a hard failure into a diagnostic-only empty tree.

View Source
pub func parse(source: String) -> String {
	render_dump(source: source, outcome: parse_file_source(source: source))
}