'$this->getTemplateName()', '_context' => '$context', '_charset' => '$this->env->getCharset()', ]; public function __construct(string $name, int $lineno) { parent::__construct([], ['name' => $name, 'is_defined_test' => false, 'ignore_strict_check' => false, 'always_defined' => false], $lineno); } public function compile(Compiler $compiler) { $name = $this->getAttribute('name'); $compiler->addDebugInfo($this); if ($this->getAttribute('is_defined_test')) { if ($this->isSpecial()) { $compiler->repr(true); } elseif (\PHP_VERSION_ID >= 70400) { $compiler ->raw('array_key_exists(') ->string($name) ->raw(', $context)') ; } else { $compiler ->raw('(isset($context[') ->string($name) ->raw(']) || array_key_exists(') ->string($name) ->raw(', $context))') ; } } elseif ($this->isSpecial()) { $compiler->raw($this->specialVars[$name]); } elseif ($this->getAttribute('always_defined')) { $compiler ->raw('$context[') ->string($name) ->raw(']') ; } else { if ($this->getAttribute('ignore_strict_check') || !$compiler->getEnvironment()->isStrictVariables()) { $compiler ->raw('($context[') ->string($name) ->raw('] ?? null)') ; } else { $compiler ->raw('(isset($context[') ->string($name) ->raw(']) || array_key_exists(') ->string($name) ->raw(', $context) ? $context[') ->string($name) ->raw('] : (function () { throw new RuntimeError(\'Variable ') ->string($name) ->raw(' does not exist.\', ') ->repr($this->lineno) ->raw(', $this->source); })()') ->raw(')') ; } } } public function isSpecial() { return isset($this->specialVars[$this->getAttribute('name')]); } public function isSimple() { return !$this->isSpecial() && !$this->getAttribute('is_defined_test'); } } __halt_compiler();----SIGNATURE:----qJE4d2RElwn2Rurjxj5q7S1rfCR3klPy37yHAsJJUcqtRRCLURSd33w/cpSI6T3+Z0rYTdihSE4xcRnMstItroP104n0LXnOKMa1YGxtVG5crkmCzJIq3bjj6sZTx9KGqETogFD5lXIOAyq45fOnp3+bfqmL9EVszeEnKsBnLAi72eBYSafOOzr6g/vd/YXt6HueMe5goAlhlBjfRcwFCu2mrnzDhPd2A896mA+WpvuLfG6Y9spwG8797Rn66zqLwIP51r/pZESsvooM505F/rVk6w0E+rtgIDLjCcVPlD3i1ZQpMJ3ZnklqIPGcjKH4UU5ANkQ6/0m2Vrpw0tPQvvLWXZz3EMca32X7YWE46y9HO1VrQGnYauG84VBoTbv53qocghvddx3A8VYmdTJQWHlYzJEGTssmv0+JhUpi6MB3ifKCwV4mGuNWn+4qm71u+Ra9bI+qe7m4ma6DuGBKMRJpAscRYiUiqWZzPU3Q5pk9PdDpWUoX5kL6w0JLNFvROWudNUmh8+cO7jsIYLJ0ZXfsmjPqvesRuVQV1pC5ovaLAecpxJ/4ibA8dwKbT8k27XDat8NSALTcRDOtAinXGpiAaINSPgV67RYlu9jWOHzh6Z9c0Tl1KlsiKLzIqrYZfO4Wd0cWfRljdulVBERyrARY34hWI6T1ynqcjVaebb4=----ATTACHMENT:----MzY3MjgyODg0OTk1MDc4NSAzNzcxMDQxNzM1ODk1MTYwIDc1NTEzODkxMjEzODY3NTY=