mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
6bcc6c31dd
In this mode non-namespaced names that are currently represented using strings will be represented using Identifier nodes instead. Identifier nodes have a string $name subnode and coerce to string. This allows preserving attributes and in particular location information on identifiers.
39 lines
828 B
PHP
39 lines
828 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
/**
|
|
* Represents a non-namespaced name. Namespaced names are represented using Name nodes.
|
|
*/
|
|
class Identifier extends NodeAbstract
|
|
{
|
|
/** @var string Identifier as string */
|
|
public $name;
|
|
|
|
/**
|
|
* Constructs an identifier node.
|
|
*
|
|
* @param string $name Identifier as string
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('name');
|
|
}
|
|
|
|
/**
|
|
* Get identifier as string.
|
|
*
|
|
* @return string Identifier as string.
|
|
*/
|
|
public function __toString() {
|
|
return $this->name;
|
|
}
|
|
}
|