Home
last modified time | relevance | path

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

123

/template/twigstarter/vendor/twig/twig/src/Node/
H A DPrintNode.php25 public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) argument
27 parent::__construct(['expr' => $expr], [], $lineno, $tag);
H A DTextNode.php24 public function __construct(string $data, int $lineno) argument
26 parent::__construct([], ['data' => $data], $lineno);
H A DWithNode.php23 …public function __construct(Node $body, ?Node $variables, bool $only, int $lineno, string $tag = n… argument
30 parent::__construct($nodes, ['only' => $only], $lineno, $tag);
H A DFlushNode.php23 public function __construct(int $lineno, string $tag) argument
25 parent::__construct([], [], $lineno, $tag);
/template/twigstarter/vendor/twig/twig/src/Error/
H A DError.php41 private $lineno; variable in Twig\\Error\\Error
73 $this->lineno = $lineno;
96 return $this->lineno;
102 * @param int $lineno The template line
104 public function setTemplateLine($lineno) argument
106 $this->lineno = $lineno;
153 if ($this->sourcePath && $this->lineno > 0) {
155 $this->line = $this->lineno;
181 if ($this->lineno && $this->lineno >= 0) {
223 if (null === $template || $this->lineno > -1) {
[all …]
/template/twigstarter/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedMethodError.php26 …public function __construct(string $message, string $className, string $methodName, int $lineno = … argument
28 if (-1 !== $lineno) {
37 parent::__construct($message, $lineno, $filename, $previous);
H A DSecurityNotAllowedPropertyError.php26 …construct(string $message, string $className, string $propertyName, int $lineno = -1, string $file… argument
28 if (-1 !== $lineno) {
37 parent::__construct($message, $lineno, $filename, $previous);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DParentExpression.php24 public function __construct(string $name, int $lineno, string $tag = null) argument
26 parent::__construct([], ['output' => false, 'name' => $name], $lineno, $tag);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Test/
H A DDefinedTest.php38 public function __construct(Node $node, string $name, ?Node $arguments, int $lineno) argument
54 throw new SyntaxError('The "defined" test only works with simple variables.', $lineno);
57 parent::__construct($node, $name, $arguments, $lineno);
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Unary/
H A DAbstractUnary.php21 public function __construct(Node $node, int $lineno) argument
23 parent::__construct(['node' => $node], [], $lineno);

123