pub fn parse<'a, L, P, Lex, S>(
parser: &P,
_lexer: &Lex,
text: &'a S,
edits: &[TextEdit],
cache: &'a mut impl ParseCache<L>,
) -> ParseOutput<'a, L>Expand description
Standalone parsing function that coordinates lexing and parsing.
This is a convenience function for performing a complete parse (lexing + parsing) in one call.