private function DocParser::match

Attempts to match the given token with the current lookahead token. If they match, updates the lookahead token; otherwise raises a syntax error.

Parameters

int $token type of Token.:

Return value

bool True if tokens match; false otherwise.

6 calls to DocParser::match()

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/DocParser.php, line 307

Class

DocParser
A parser for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

private function match($token) {
  if (!$this->lexer
    ->isNextToken($token)) {
    $this
      ->syntaxError($this->lexer
      ->getLiteral($token));
  }
  return $this->lexer
    ->moveNext();
}