The Parle\Lexer class
Single state lexer class. Lexemes can be defined on the fly. If the particular lexer instance is meant to be used with Parle\Parser, the token IDs need to be taken from there. Otherwise, arbitrary token IDs can be supplied. This lexer can give a certain performance advantage over Parle\RLexer, if no multiple states are required. Note, that Parle\RParser is not compatible with this lexer.
Intro
Single state lexer class. Lexemes can be defined on the fly. If the particular lexer instance is meant to be used with Parle\Parser, the token IDs need to be taken from there. Otherwise, arbitrary token IDs can be supplied. This lexer can give a certain performance advantage over Parle\RLexer, if no multiple states are required. Note, that Parle\RParser is not compatible with this lexer.
Class synopsis
Predefined Constants
Parle\Lexer::ICASEParle\Lexer::DOT_NOT_LFParle\Lexer::DOT_NOT_CRLFParle\Lexer::SKIP_WSParle\Lexer::MATCH_ZERO_LEN
Properties
bolStart of input flag.
flagsLexer flags.
stateCurrent lexer state, readonly.
markerPosition of the latest token match, readonly.
cursorCurrent input offset, readonly.
Lexer