2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
2017-04-28 19:09:39 +02:00
|
|
|
use PhpParser\Node\Identifier;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
class Goto_ extends Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2017-04-28 19:09:39 +02:00
|
|
|
/** @var Identifier Name of label to jump to */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $name;
|
|
|
|
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs a goto node.
|
|
|
|
*
|
2017-04-28 19:09:39 +02:00
|
|
|
* @param string|Identifier $name Name of label to jump to
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($name, array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2017-04-28 19:09:39 +02:00
|
|
|
$this->name = \is_string($name) ? new Identifier($name) : $name;
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2015-02-28 18:44:28 +01:00
|
|
|
return array('name');
|
2011-09-22 20:27:12 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|