Parle
PHP Manual

The Parle\RLexer class

(PECL parle >= 0.5.1)

Einführung

Multistate lexer class. Lexemes can be defined on the fly. If the particular lexer instance is meant to be used with Parle\RParser, the token IDs need to be taken from there. Otherwise, arbitrary token IDs can be supplied. Note, that Parle\Parser is not compatible with this lexer.

Klassenbeschreibung

Parle\RLexer {
/* Constants */
const integer ICASE = 1 ;
const integer DOT_NOT_LF = 2 ;
const integer DOT_NOT_CRLF = 4 ;
const integer SKIP_WS = 8 ;
const integer MATCH_ZERO_LEN = 16 ;
/* Eigenschaften */
public boolean $bol = FALSE ;
public integer $flags = 0 ;
public integer $state = 0 ;
public integer $marker = 0 ;
public integer $cursor = 0 ;
/* Methoden */
public void advance ( void )
public void build ( void )
public void callout ( int $id , callable $callback )
public void consume ( string $data )
public void dump ( void )
public Parle\Token getToken ( void )
public void insertMacro ( string $name , string $regex )
public void push ( string $regex , int $id )
public void push ( string $state , string $regex , int $id , string $newState )
public void push ( string $state , string $regex , string $newState )
public int pushState ( string $state )
public void reset ( int $pos )
}

Vordefinierte Konstanten

Parle\RLexer::ICASE

Parle\RLexer::DOT_NOT_LF

Parle\RLexer::DOT_NOT_CRLF

Parle\RLexer::SKIP_WS

Parle\RLexer::MATCH_ZERO_LEN

Eigenschaften

bol

Start of input flag.

flags

Lexer flags.

state

Current lexer state, readonly.

marker

Position of the latest token match, readonly.

cursor

Current input offset, readonly.

Inhaltsverzeichnis


Parle
PHP Manual