name = $name; } /** * Returns the name of this symbol. */ public function name(): string { return $this->name; } /** * Returns the value of this expression. * * @param Context $context symbol table */ public function value(Context $context): mixed { return $context->lookup($this->name); } }