<?phpdeclare(strict_types=1);namespacePhpParser\Node\Stmt;usePhpParser\Node\Identifier;usePhpParser\Node\Stmt;classGoto_extendsStmt{/** @var Identifier Name of label to jump to */public$name;/** * Constructs a goto node. * * @param string|Identifier $name Name of label to jump to * @param array $attributes Additional attributes */publicfunction__construct($name,array$attributes=[]){parent::__construct($attributes);$this->name=\is_string($name)?newIdentifier($name):$name;}publicfunctiongetSubNodeNames():array{return['name'];}publicfunctiongetType():string{return'Stmt_Goto';}}