pub trait IntoParseBuilderExt<'i> {
    type Lexer: LangLexer<'i>;

    fn builder<'o, 'c, 'p, T>(
        self
    ) -> ParseBuilder<'i, 'o, 'c, 'p, Self::Lexer, T>
    where
        T: HasParser
; }
Expand description

Trait for creating parse builders from lexer inputs

Required Associated Types

Type of the lexer associated with this input

Required Methods

Create a builder for this lexer input

Implementors