2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Error;
|
|
|
|
|
|
|
|
class Namespace_ extends Node\Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var null|Node\Name Name */
|
|
|
|
public $name;
|
|
|
|
/** @var Node[] Statements */
|
|
|
|
public $stmts;
|
|
|
|
|
2011-11-27 12:53:48 +01:00
|
|
|
protected static $specialNames = array(
|
|
|
|
'self' => true,
|
|
|
|
'parent' => true,
|
|
|
|
'static' => true,
|
|
|
|
);
|
|
|
|
|
2011-10-21 16:51:37 +02:00
|
|
|
/**
|
|
|
|
* Constructs a namespace node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param null|Node\Name $name Name
|
|
|
|
* @param Node[] $stmts Statements
|
|
|
|
* @param array $attributes Additional attributes
|
2011-10-21 16:51:37 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
public function __construct(Node\Name $name = null, $stmts = array(), array $attributes = array()) {
|
2015-02-28 18:44:28 +01:00
|
|
|
parent::__construct(null, $attributes);
|
|
|
|
$this->name = $name;
|
|
|
|
$this->stmts = $stmts;
|
2011-06-26 18:40:23 +02:00
|
|
|
|
2011-11-27 12:53:48 +01:00
|
|
|
if (isset(self::$specialNames[(string) $this->name])) {
|
2014-02-12 20:23:12 +01:00
|
|
|
throw new Error(sprintf('Cannot use \'%s\' as namespace name', $this->name));
|
2011-06-26 18:40:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (null !== $this->stmts) {
|
|
|
|
foreach ($this->stmts as $stmt) {
|
2014-02-06 14:44:16 +01:00
|
|
|
if ($stmt instanceof self) {
|
|
|
|
throw new Error('Namespace declarations cannot be nested', $stmt->getLine());
|
2011-06-26 18:40:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('name', 'stmts');
|
|
|
|
}
|
2014-01-23 13:33:02 +01:00
|
|
|
}
|