1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 10:18:09 +01:00
PHP-Parser/lib/Node/Name.php
nikic eeb63065be a) changes node structure (Stmt_, Expr_, ...) b) fixes parsing of x::$y[z]
Sorry for that one large commit. Won't happen again.
2011-05-27 18:42:36 +02:00

16 lines
260 B
PHP

<?php
/**
* @property array $parts Parts of the name
*/
class Node_Name extends NodeAbstract
{
const ABSOLUTE = 1;
const RELATIVE = 2;
protected $resolveType;
public function resolveType($type) {
$this->resolveType = $type;
}
}