Home
last modified time | relevance | path

Searched refs:lineno (Results 26 – 50 of 60) sorted by last modified time

123

/template/twigstarter/vendor/twig/twig/src/Node/
H A DIfNode.php24 public function __construct(Node $tests, ?Node $else, int $lineno, string $tag = null) argument
31 parent::__construct($nodes, [], $lineno, $tag);
H A DBlockNode.php24 public function __construct(string $name, Node $body, int $lineno, string $tag = null) argument
26 parent::__construct(['body' => $body], ['name' => $name], $lineno, $tag);
H A DBlockReferenceNode.php24 public function __construct(string $name, int $lineno, string $tag = null) argument
26 parent::__construct([], ['name' => $name], $lineno, $tag);
H A DEmbedNode.php26 …x, ?AbstractExpression $variables, bool $only, bool $ignoreMissing, int $lineno, string $tag = nul… argument
28 …t::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing, $li…
H A DImportNode.php25 …public function __construct(AbstractExpression $expr, AbstractExpression $var, int $lineno, string… argument
27 parent::__construct(['expr' => $expr, 'var' => $var], ['global' => $global], $lineno, $tag);
H A DIncludeNode.php25 …r, ?AbstractExpression $variables, bool $only, bool $ignoreMissing, int $lineno, string $tag = nul… argument
32 …struct($nodes, ['only' => (bool) $only, 'ignore_missing' => (bool) $ignoreMissing], $lineno, $tag);
H A DMacroNode.php26 …public function __construct(string $name, Node $body, Node $arguments, int $lineno, string $tag = … argument
34 …arent::__construct(['body' => $body, 'arguments' => $arguments], ['name' => $name], $lineno, $tag);
H A DNode.php27 protected $lineno; variable in Twig\\Node\\Node
36 * @param int $lineno The line number
39 …public function __construct(array $nodes = [], array $attributes = [], int $lineno = 0, string $ta… argument
48 $this->lineno = $lineno;
89 return $this->lineno;
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/
H A DAbstractBinary.php21 public function __construct(Node $left, Node $right, int $lineno) argument
23 parent::__construct(['left' => $left, 'right' => $right], [], $lineno);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DConditionalExpression.php19 …truct(AbstractExpression $expr1, AbstractExpression $expr2, AbstractExpression $expr3, int $lineno) argument
21 parent::__construct(['expr1' => $expr1, 'expr2' => $expr2, 'expr3' => $expr3], [], $lineno);
H A DConstantExpression.php19 public function __construct($value, int $lineno) argument
21 parent::__construct([], ['value' => $value], $lineno);
H A DFilterExpression.php20 …struct(Node $node, ConstantExpression $filterName, Node $arguments, int $lineno, string $tag = nul… argument
22 …onstruct(['node' => $node, 'filter' => $filterName, 'arguments' => $arguments], [], $lineno, $tag);
H A DFunctionExpression.php19 public function __construct(string $name, Node $arguments, int $lineno) argument
21 …::__construct(['arguments' => $arguments], ['name' => $name, 'is_defined_test' => false], $lineno);
H A DGetAttrExpression.php21 …on $node, AbstractExpression $attribute, ?AbstractExpression $arguments, string $type, int $lineno) argument
28 …type, 'is_defined_test' => false, 'ignore_strict_check' => false, 'optimizable' => true], $lineno);
H A DMethodCallExpression.php18 …tion __construct(AbstractExpression $node, string $method, ArrayExpression $arguments, int $lineno) argument
20 …ents' => $arguments], ['method' => $method, 'safe' => false, 'is_defined_test' => false], $lineno);
H A DNameExpression.php25 public function __construct(string $name, int $lineno) argument
27 …, 'is_defined_test' => false, 'ignore_strict_check' => false, 'always_defined' => false], $lineno);
80 ->repr($this->lineno)
H A DNullCoalesceExpression.php23 public function __construct(Node $left, Node $right, int $lineno) argument
35 parent::__construct($test, $left, $right, $lineno);
H A DTempNameExpression.php18 public function __construct(string $name, int $lineno) argument
20 parent::__construct([], ['name' => $name], $lineno);
H A DTestExpression.php19 public function __construct(Node $node, string $name, ?Node $arguments, int $lineno) argument
26 parent::__construct($nodes, ['name' => $name], $lineno);
/template/twigstarter/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedFilterError.php25 …public function __construct(string $message, string $functionName, int $lineno = -1, string $filen… argument
27 if (-1 !== $lineno) {
36 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedFunctionError.php25 …public function __construct(string $message, string $functionName, int $lineno = -1, string $filen… argument
27 if (-1 !== $lineno) {
36 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedTagError.php25 …public function __construct(string $message, string $tagName, int $lineno = -1, string $filename =… argument
27 if (-1 !== $lineno) {
36 parent::__construct($message, $lineno, $filename, $previous);
/template/twigstarter/vendor/twig/twig/src/TokenParser/
H A DMacroTokenParser.php31 $lineno = $token->getLine();
50 …setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno, $this->getTag()));
H A DSetTokenParser.php32 $lineno = $token->getLine();
58 return new SetNode($capture, $names, $values, $lineno, $this->getTag());
H A DSpacelessTokenParser.php34 $lineno = $token->getLine();
36 …with the "apply" tag instead.', $stream->getSourceContext()->getName(), $lineno), \E_USER_DEPRECAT…
42 return new SpacelessNode($body, $lineno, $this->getTag());

123