parse_lenient

func parse_lenient(source: String) -> String

The lenient whole-file parse (the editor contract): a hard failure degrades to an empty tree carrying the failure as a diagnostic.

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