2011-04-18 19:02:30 +02:00
|
|
|
<?php
|
|
|
|
|
2011-10-28 23:12:32 +02:00
|
|
|
abstract class PHPParser_NodeAbstract implements PHPParser_Node, IteratorAggregate
|
2011-04-18 19:02:30 +02:00
|
|
|
{
|
2011-10-28 23:12:32 +02:00
|
|
|
protected $subNodes;
|
2012-04-03 20:07:10 +02:00
|
|
|
protected $attributes;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
|
|
|
* Creates a Node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $subNodes Array of sub nodes
|
|
|
|
* @param array $attributes Array of attributes
|
2011-05-31 16:33:11 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $subNodes = array(), array $attributes = array()) {
|
2011-10-28 23:12:32 +02:00
|
|
|
$this->subNodes = $subNodes;
|
2012-04-29 23:32:09 +02:00
|
|
|
$this->attributes = $attributes;
|
2011-05-30 22:11:11 +02:00
|
|
|
}
|
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
2011-09-21 21:43:19 +02:00
|
|
|
* Gets the type of the node.
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
2011-09-21 21:43:19 +02:00
|
|
|
* @return string Type of the node
|
2011-05-31 16:33:11 +02:00
|
|
|
*/
|
2011-05-27 18:20:44 +02:00
|
|
|
public function getType() {
|
2011-06-05 18:40:04 +02:00
|
|
|
return substr(get_class($this), 15);
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|
|
|
|
|
2011-12-02 17:52:03 +01:00
|
|
|
/**
|
|
|
|
* Gets the names of the sub nodes.
|
|
|
|
*
|
|
|
|
* @return array Names of sub nodes
|
|
|
|
*/
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array_keys($this->subNodes);
|
|
|
|
}
|
|
|
|
|
2011-06-12 17:12:47 +02:00
|
|
|
/**
|
2011-06-28 14:11:12 +02:00
|
|
|
* Gets line the node started in.
|
2011-06-12 17:12:47 +02:00
|
|
|
*
|
|
|
|
* @return int Line
|
|
|
|
*/
|
|
|
|
public function getLine() {
|
2012-05-05 17:34:27 +02:00
|
|
|
return $this->getAttribute('startLine', -1);
|
2011-06-12 17:12:47 +02:00
|
|
|
}
|
2011-07-03 16:35:45 +02:00
|
|
|
|
2011-11-06 17:07:38 +01:00
|
|
|
/**
|
|
|
|
* Sets line the node started in.
|
|
|
|
*
|
|
|
|
* @param int $line Line
|
|
|
|
*/
|
|
|
|
public function setLine($line) {
|
2012-05-05 17:34:27 +02:00
|
|
|
$this->setAttribute('startLine', (int) $line);
|
2011-11-06 17:07:38 +01:00
|
|
|
}
|
|
|
|
|
2011-07-03 16:35:45 +02:00
|
|
|
/**
|
2012-05-06 18:24:26 +02:00
|
|
|
* Gets the doc comment of the node.
|
2011-07-03 16:35:45 +02:00
|
|
|
*
|
2012-05-06 18:24:26 +02:00
|
|
|
* The doc comment has to be the last comment associated with the node.
|
|
|
|
*
|
|
|
|
* @return null|PHPParser_Comment_Doc Doc comment object or null
|
2011-07-03 16:35:45 +02:00
|
|
|
*/
|
|
|
|
public function getDocComment() {
|
2012-05-06 18:24:26 +02:00
|
|
|
$comments = $this->getAttribute('comments');
|
|
|
|
if (!$comments) {
|
|
|
|
return null;
|
|
|
|
}
|
2011-10-28 23:12:32 +02:00
|
|
|
|
2012-05-06 18:24:26 +02:00
|
|
|
$lastComment = $comments[count($comments) - 1];
|
|
|
|
if (!$lastComment instanceof PHPParser_Comment_Doc) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $lastComment;
|
2011-11-06 17:07:38 +01:00
|
|
|
}
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 20:07:10 +02:00
|
|
|
/**
|
2012-04-09 12:37:47 +02:00
|
|
|
* {@inheritDoc}
|
2012-04-03 20:07:10 +02:00
|
|
|
*/
|
|
|
|
public function setAttribute($key, $value) {
|
|
|
|
$this->attributes[$key] = $value;
|
|
|
|
}
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 20:07:10 +02:00
|
|
|
/**
|
2012-04-09 12:37:47 +02:00
|
|
|
* {@inheritDoc}
|
2012-04-03 20:07:10 +02:00
|
|
|
*/
|
|
|
|
public function hasAttribute($key) {
|
|
|
|
return array_key_exists($key, $this->attributes);
|
|
|
|
}
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 20:07:10 +02:00
|
|
|
/**
|
2012-04-09 12:37:47 +02:00
|
|
|
* {@inheritDoc}
|
2012-04-03 20:07:10 +02:00
|
|
|
*/
|
2012-05-06 18:24:26 +02:00
|
|
|
public function &getAttribute($key, $default = null) {
|
|
|
|
if (!array_key_exists($key, $this->attributes)) {
|
|
|
|
return $default;
|
|
|
|
} else {
|
|
|
|
return $this->attributes[$key];
|
|
|
|
}
|
2012-04-03 20:07:10 +02:00
|
|
|
}
|
2012-04-09 12:37:47 +02:00
|
|
|
|
2012-04-03 20:07:10 +02:00
|
|
|
/**
|
2012-04-09 12:37:47 +02:00
|
|
|
* {@inheritDoc}
|
2012-04-03 20:07:10 +02:00
|
|
|
*/
|
|
|
|
public function getAttributes() {
|
|
|
|
return $this->attributes;
|
|
|
|
}
|
2011-11-06 17:07:38 +01:00
|
|
|
|
2011-10-28 23:12:32 +02:00
|
|
|
/* Magic interfaces */
|
|
|
|
|
|
|
|
public function &__get($name) {
|
|
|
|
return $this->subNodes[$name];
|
|
|
|
}
|
|
|
|
public function __set($name, $value) {
|
|
|
|
$this->subNodes[$name] = $value;
|
|
|
|
}
|
|
|
|
public function __isset($name) {
|
|
|
|
return isset($this->subNodes[$name]);
|
|
|
|
}
|
|
|
|
public function __unset($name) {
|
|
|
|
unset($this->subNodes[$name]);
|
|
|
|
}
|
|
|
|
public function getIterator() {
|
|
|
|
return new ArrayIterator($this->subNodes);
|
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|