mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +01:00
858545732c
Node_Const is shared between Node_Stmt_ClassConst and Node_Stmt_Const. Maybe one could generalize it to a Node_NameToValue to share it with Node_Stmt_Declare too.
26 lines
767 B
PHP
26 lines
767 B
PHP
<?php
|
|
|
|
/**
|
|
* @property string $name Name
|
|
* @property PHPParser_Node_Expr $value Value
|
|
*/
|
|
class PHPParser_Node_Const extends PHPParser_NodeAbstract
|
|
{
|
|
/**
|
|
* Constructs a const node for use in class const and const statements.
|
|
*
|
|
* @param string $name Name
|
|
* @param PHPParser_Node_Expr $value Value
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct($name, PHPParser_Node_Expr $value, $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
array(
|
|
'name' => $name,
|
|
'value' => $value,
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |