mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 09:47:59 +01:00
23 lines
525 B
PHP
23 lines
525 B
PHP
<?php
|
|
|
|
/**
|
|
* @property string $name Name
|
|
*/
|
|
class PHPParser_Node_Stmt_Label extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a label node.
|
|
*
|
|
* @param string $name Name
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct($name, $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
array(
|
|
'name' => $name,
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |