mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
22 lines
502 B
PHP
22 lines
502 B
PHP
<?php
|
|
|
|
/**
|
|
* @property string $name Name of label to jump to
|
|
*/
|
|
class PHPParser_Node_Stmt_Goto extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a goto node.
|
|
*
|
|
* @param string $name Name of label to jump to
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'name' => $name,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |