InfixParserImpl

class InfixParserImpl<T, E>(precedence: Int, block: InfixFunction<T, E>) : InfixParser<T, E>

Functions

parse
Link copied to clipboard
common
open override fun parse(ctx: ParserContext<T, E>, left: E, token: Token<T>): E
This infix parser's parsing implementation.

Properties

precedence
Link copied to clipboard
common
open override val precedence: Int
This infix parser's precedence.