You are here

protected function Twig_Lexer::lexVar in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/Lexer.php \Twig_Lexer::lexVar()
1 call to Twig_Lexer::lexVar()
Twig_Lexer::tokenize in vendor/twig/twig/lib/Twig/Lexer.php
Tokenizes a source code.

File

vendor/twig/twig/lib/Twig/Lexer.php, line 209

Class

Twig_Lexer
Lexes a template string.

Code

protected function lexVar() {
  if (empty($this->brackets) && preg_match($this->regexes['lex_var'], $this->code, $match, null, $this->cursor)) {
    $this
      ->pushToken(Twig_Token::VAR_END_TYPE);
    $this
      ->moveCursor($match[0]);
    $this
      ->popState();
  }
  else {
    $this
      ->lexExpression();
  }
}