The Parle\Token class

(PECL parle >= 0.5.2)

Introduction

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

Class synopsis

classParle\Token {
constintEOI = 0;
constintUNKNOWN = -1;
constintSKIP = -2;
publicint$id;
}

Properties

id

Token id.

value

Token value.

Predefined Constants

Parle\Token::EOI

End of input token id.

Parle\Token::UNKNOWN

Unknown token id.

Parle\Token::SKIP

Skip token id.

To Top