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;
|
|
|
|
|
2011-06-05 18:40:04 +02:00
|
|
|
/**
|
2014-02-06 14:44:16 +01:00
|
|
|
* @property null|Node\Name $name Name
|
|
|
|
* @property Node[] $stmts Statements
|
2011-06-05 18:40:04 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
class Namespace_ extends Node\Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
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()) {
|
2011-10-21 16:51:37 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'name' => $name,
|
|
|
|
'stmts' => $stmts,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-21 16:51:37 +02:00
|
|
|
);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-23 13:33:02 +01:00
|
|
|
}
|