activeFile = $this->activeFile; $this->classes[$this->_active_class]->Attributes[$c->name] = $c; $this->classes[$this->_active_class]->Attributes[$c->name]->class = $this->classes[$this->_active_class]->name; } } function parse() { // read var declares in a class $flags= array($this->look_nws(-1), $this->look_nws(-2), $this->look_nws(-3), $this->look_nws(-4)); $startpos = $this->pos; $var = new PHP_CodeDoc_Data_Var; $var->name = $this->tokens[$this->pos+2][1]; $var->type = "Public"; $var->isPublic = 1; $var->isStatic = 0; $var->visibility = 1; if (in_array(T_PRIVATE, $flags)) { $var->type = "Private"; $var->isPublic = 0; $var->visibility = 0; } if (in_array(T_PROTECTED, $flags)) { $var->type = "Protected"; $var->isPublic = 0; $var->visibility = 0; } if (in_array(T_STATIC, $flags)) { $var->isStatic = 1; } $var->visibility = 1; PHP_CodeDoc_Parser_Var::_store_tokens($var); if ($v = PHP_CodeDoc_Parser_Comment::parse()) { $var->description = $v; } $this->pos = $startpos; return $var; } /* remember the tokens for a var.. (for printing later) */ function _store_tokens(&$var) { //return; $var->tokenStart=$this->pos; $n=0; $in_method =0; $inbrak =0; $level=0; $pos = $this->pos; while ($pos < $this->total) { $v = $this->tokens[$pos]; if (!is_array($v)) { if (trim($v) == ";") { $var->tokenEnd = $pos; return; } } $var->tokens[$n] = $v; $pos++; $n++; } $var->tokenEnd = $pos; } } ?>