abstract class Lexer

Base class for writing simple lexers, i.e. for creating small DSLs.

@since 2.0 @author Guilherme Blanco <guilhermeblanco@hotmail.com> @author Jonathan Wage <jonwage@gmail.com> @author Roman Borschel <roman@code-factory.org> @todo Rename: AbstractLexer

Hierarchy

  • class \Doctrine\Common\Lexer

Expanded class hierarchy of Lexer

1 file declares its use of Lexer

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Lexer.php, line 31

Namespace

Doctrine\Common
View source

Members

Namesort descending Modifiers Type Description Overrides
Lexer::$lookahead public property
Lexer::$peek private property
Lexer::$position private property
Lexer::$token public property
Lexer::$tokens private property
Lexer::getCatchablePatterns abstract protected function Lexical catchable patterns. 1
Lexer::getLiteral public function Gets the literal for a given token.
Lexer::getNonCatchablePatterns abstract protected function Lexical non-catchable patterns. 1
Lexer::getType abstract protected function Retrieve token type. Also processes the token value if necessary. 1
Lexer::glimpse public function Peeks at the next token, returns it and immediately resets the peek.
Lexer::isA public function Checks if given value is identical to the given token
Lexer::isNextToken public function Checks whether a given token matches the current lookahead.
Lexer::isNextTokenAny public function Checks whether any of the given tokens matches the current lookahead
Lexer::moveNext public function Moves to the next token in the input string.
Lexer::peek public function Moves the lookahead token forward.
Lexer::reset public function Resets the lexer.
Lexer::resetPeek public function Resets the peek pointer to 0.
Lexer::resetPosition public function Resets the lexer position on the input to the given position.
Lexer::scan protected function Scans the input string for tokens.
Lexer::setInput public function Sets the input data to be tokenized.
Lexer::skipUntil public function Tells the lexer to skip input tokens until it sees a token with the given value.