protected function Twig_Lexer::moveCursor

8 calls to Twig_Lexer::moveCursor()
Twig_Lexer::lexBlock in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php
Twig_Lexer::lexComment in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php
Twig_Lexer::lexData in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php
Twig_Lexer::lexExpression in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php
Twig_Lexer::lexInterpolation in drupal/core/vendor/twig/twig/lib/Twig/Lexer.php

... See full list

File

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

Class

Twig_Lexer
Lexes a template string.

Code

protected function moveCursor($text) {
  $this->cursor += strlen($text);
  $this->lineno += substr_count($text, "\n");
}