Метод |
Описание |
|
getSourceFile ( ) : string |
Returns the name of the source file. |
|
next ( ) : PDepend\Source\Tokenizer\Token |
Returns the next token or {@link \PDepend\Source\Tokenizer\Tokenizer::T_EOF} if
there is no next token. |
|
peek ( ) : integer |
Returns the next token type or {@link \PDepend\Source\Tokenizer\Tokenizer::T_EOF} if
there is no next token. |
|
peekNext ( ) : integer |
Returns the type of next token, after the current token. This method
ignores all comments between the current and the next token. |
|
prev ( ) : integer |
Returns the previous token type or {@link \PDepend\Source\Tokenizer\Tokenizer::T_BOF}
if there is no previous token. |
|
setSourceFile ( string $sourceFile ) : void |
Sets a new php source file. |
|