Home
last modified time | relevance | path

Searched refs:getCurrent (Results 1 – 9 of 9) sorted by last modified time

/template/twigstarter/vendor/twig/twig/src/TokenParser/
H A DIfTokenParser.php64 …dif" to close the "if" block started at line %d).', $lineno), $stream->getCurrent()->getLine(), $s…
H A DAutoEscapeTokenParser.php34 …yntaxError('An escaping strategy must be a string or false.', $stream->getCurrent()->getLine(), $s…
H A DBlockTokenParser.php38 …", $name, $this->parser->getBlock($name)->getTemplateLine()), $stream->getCurrent()->getLine(), $s…
50 …d endblock for block "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $s…
H A DUseTokenParser.php39 … template references in a "use" statement must be a string.', $stream->getCurrent()->getLine(), $s…
H A DMacroTokenParser.php44 …d endmacro for macro "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $s…
H A DSetTokenParser.php43 …you must have the same number of variables and assignments.', $stream->getCurrent()->getLine(), $s…
49 …hen using set with a block, you cannot have a multi-target.', $stream->getCurrent()->getLine(), $s…
/template/twigstarter/vendor/twig/twig/src/
H A DParser.php108 $e->setTemplateLine($this->stream->getCurrent()->getLine());
331 return $this->stream->getCurrent();
H A DExpressionParser.php107 $line = $stream->getCurrent()->getLine();
325 $node = new ArrayExpression([], $stream->getCurrent()->getLine());
350 $node = new ArrayExpression([], $stream->getCurrent()->getLine());
383 $current = $stream->getCurrent();
751 …printf(' in %s at line %d.', $src->getPath() ?: $src->getName(), $stream->getCurrent()->getLine());
H A DTokenStream.php118 public function getCurrent(): Token function in Twig\\TokenStream