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;
|
2011-06-12 17:12:47 +02:00
|
|
|
protected $line;
|
2011-07-03 16:35:45 +02:00
|
|
|
protected $docComment;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
|
|
|
* Creates a Node.
|
|
|
|
*
|
2011-07-03 16:35:45 +02:00
|
|
|
* @param array $subNodes Array of sub nodes
|
|
|
|
* @param int $line Line
|
|
|
|
* @param null|string $docComment Nearest doc comment
|
2011-05-31 16:33:11 +02:00
|
|
|
*/
|
2011-07-03 16:35:45 +02:00
|
|
|
public function __construct(array $subNodes, $line = -1, $docComment = null) {
|
2011-10-28 23:12:32 +02:00
|
|
|
$this->subNodes = $subNodes;
|
2011-07-03 16:35:45 +02:00
|
|
|
$this->line = $line;
|
|
|
|
$this->docComment = $docComment;
|
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-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() {
|
|
|
|
return $this->line;
|
|
|
|
}
|
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) {
|
|
|
|
$this->line = (int) $line;
|
|
|
|
}
|
|
|
|
|
2011-07-03 16:35:45 +02:00
|
|
|
/**
|
|
|
|
* Gets the nearest doc comment.
|
|
|
|
*
|
|
|
|
* @return null|string Nearest doc comment or null
|
|
|
|
*/
|
|
|
|
public function getDocComment() {
|
|
|
|
return $this->docComment;
|
|
|
|
}
|
2011-10-28 23:12:32 +02:00
|
|
|
|
2011-11-06 17:07:38 +01:00
|
|
|
/**
|
|
|
|
* Sets the nearest doc comment.
|
|
|
|
*
|
|
|
|
* @param null|string $docComment Nearest doc comment or null
|
|
|
|
*/
|
|
|
|
public function setDocComment($docComment) {
|
|
|
|
$this->docComment = $docComment;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|