mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 02:07:59 +01:00
a6846e3b71
The parser will now always generate Identifier nodes (for non-namespaced identifiers). This obsoletes the useIdentifierNodes parser option. Node constructors still accepts strings and will implicitly create an Identifier wrapper. Identifier implement __toString(), so that outside of strict-mode many things continue to work without changes.
34 lines
886 B
PHP
34 lines
886 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
/**
|
|
* @property Name $namespacedName Namespaced name (for class constants, if using NameResolver)
|
|
*/
|
|
class Const_ extends NodeAbstract
|
|
{
|
|
/** @var Identifier Name */
|
|
public $name;
|
|
/** @var Expr Value */
|
|
public $value;
|
|
|
|
/**
|
|
* Constructs a const node for use in class const and const statements.
|
|
*
|
|
* @param string|Identifier $name Name
|
|
* @param Expr $value Value
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, Expr $value, array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->name = \is_string($name) ? new Identifier($name) : $name;
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('name', 'value');
|
|
}
|
|
}
|