protected function Twig_Lexer::lexRawData

1 call to Twig_Lexer::lexRawData()
Twig_Lexer::lexData in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php

File

drupal/core/vendor/twig/twig/lib/Twig/Lexer.php, line 289

Class

Twig_Lexer
Lexes a template string.

Code

protected function lexRawData() {
  if (!preg_match($this->regexes['lex_raw_data'], $this->code, $match, PREG_OFFSET_CAPTURE, $this->cursor)) {
    throw new Twig_Error_Syntax(sprintf('Unexpected end of file: Unclosed "block"'), $this->lineno, $this->filename);
  }
  $text = substr($this->code, $this->cursor, $match[0][1] - $this->cursor);
  $this
    ->moveCursor($text . $match[0][0]);
  if (false !== strpos($match[1][0], $this->options['whitespace_trim'])) {
    $text = rtrim($text);
  }
  $this
    ->pushToken(Twig_Token::TEXT_TYPE, $text);
}