The Parle\Token class

(PECL parle >= 0.5.2)

Introducere

This class represents a token. Lexer returns instances of this class.

Sinopsisul clasei

Parle\Token {
/* Constants */
const int EOI = 0 ;
const int UNKNOWN = -1 ;
const int SKIP = -2 ;
/* Proprietăți */
public int $id ;
public string $value ;
/* Metode */
}

Proprietăți

id

Token id.

value

Token value.

Constante predefinite

Parle\Token::EOI

End of input token id.

Parle\Token::UNKNOWN

Unknown token id.

Parle\Token::SKIP

Skip token id.

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top