You are here

private function DocParser::matchAny in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php \Drupal\Component\Annotation\Doctrine\DocParser::matchAny()

Attempts to match the current lookahead token with any of the given tokens.

If any of them matches, this method updates the lookahead token; otherwise a syntax error is raised.

Parameters

array $tokens:

Return value

boolean

2 calls to DocParser::matchAny()
DocParser::ArrayEntry in core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php
ArrayEntry ::= Value | KeyValuePair KeyValuePair ::= Key ("=" | ":") PlainValue | Constant Key ::= string | integer | Constant
DocParser::Identifier in core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php
Identifier ::= string

File

core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php, line 392
This class is a near-copy of Doctrine\Common\Annotations\DocParser, which is part of the Doctrine project: <http://www.doctrine-project.org>. It was copied from version 1.2.7.

Class

DocParser
A parser for docblock annotations.

Namespace

Drupal\Component\Annotation\Doctrine

Code

private function matchAny(array $tokens) {
  if (!$this->lexer
    ->isNextTokenAny($tokens)) {
    $this
      ->syntaxError(implode(' or ', array_map(array(
      $this->lexer,
      'getLiteral',
    ), $tokens)));
  }
  return $this->lexer
    ->moveNext();
}