1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Namespace_.php

49 lines
1.2 KiB
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
use PhpParser\Error;
2011-06-05 18:40:04 +02:00
/**
* @property null|Node\Name $name Name
* @property Node[] $stmts Statements
2011-06-05 18:40:04 +02:00
*/
class Namespace_ extends Node\Stmt
2011-06-05 18:40:04 +02:00
{
protected static $specialNames = array(
'self' => true,
'parent' => true,
'static' => true,
);
2011-10-21 16:51:37 +02:00
/**
* Constructs a namespace node.
*
* @param null|Node\Name $name Name
* @param Node[] $stmts Statements
* @param array $attributes Additional attributes
2011-10-21 16:51:37 +02: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,
),
$attributes
2011-10-21 16:51:37 +02:00
);
if (isset(self::$specialNames[(string) $this->name])) {
throw new Error(sprintf('Cannot use \'%s\' as namespace name', $this->name));
}
if (null !== $this->stmts) {
foreach ($this->stmts as $stmt) {
if ($stmt instanceof self) {
throw new Error('Namespace declarations cannot be nested', $stmt->getLine());
}
}
}
}
}