AOWP


aowp.PHP_Parser_CoreyyStackEntry
/parser/Parser/Core.php at line 87

Class PHP_Parser_CoreyyStackEntry

PHP_Parser_CoreyyStackEntry

public class PHP_Parser_CoreyyStackEntry

The following structure represents a single element of the parser's stack. Information stored includes:

+ The state number for the parser at this level of the stack.

+ The value of the token stored at this level of the stack. (In other words, the "major" token.)

+ The semantic value stored at this level of the stack. This is the information used by the action routines in the grammar. It is sometimes called the "minor" token.


Field Summary
mixed

$major

mixed

$minor

mixed

$stateno

Field Detail

/parser/Parser/Core.php at line 90

major

public mixed $major

/parser/Parser/Core.php at line 92

minor

public mixed $minor

/parser/Parser/Core.php at line 89

stateno

public mixed $stateno

AOWP