php-parser/lib/PHPParser/NodeAbstract.php

41 lines
886 B
PHP
Raw Normal View History

2011-04-18 19:02:30 +02:00
<?php
abstract class PHPParser_NodeAbstract extends ArrayObject
2011-04-18 19:02:30 +02:00
{
protected $line;
2011-04-18 19:02:30 +02:00
/**
* Creates a Node.
*
* @param array $subNodes Array of sub nodes
* @param int $line Line
*/
public function __construct(array $subNodes, $line = -1) {
parent::__construct($subNodes, ArrayObject::ARRAY_AS_PROPS);
$this->line = $line;
2011-05-30 22:11:11 +02:00
}
/**
* Gets the type of this node.
*
* The type of a node is the node's class name without the
2011-06-05 18:40:04 +02:00
* PHPParser_Node_ prefix.
*
* @return string Type of this node
*/
public function getType() {
2011-06-05 18:40:04 +02:00
return substr(get_class($this), 15);
}
/**
* Gets line the node *ended* in.
*
* TODO: We probably want the line it started in...
*
* @return int Line
*/
public function getLine() {
return $this->line;
}
2011-04-18 19:02:30 +02:00
}