dcf052b677a312db1bd091a87f3bdd502dac6334
[PHP_CodeDoc] / CodeDoc / Parser / Var.php
1 <?php
2 /*
3 *@package PHP_CodeDoc
4 */
5 /*
6
7 var parser -  very simple!
8 uses parent (master codedoc object) which contains the active tokens
9
10 */
11
12  
13 class PHP_CodeDoc_Parser_Var {
14
15     
16     var $var; // current return value;
17     function read ($inclass) {
18         if (!$inclass) {
19             return;
20         }
21         if ($c = PHP_CodeDoc_Parser_Var::parse()) {
22              
23             $c->activeFile = $this->activeFile;
24             $this->classes[$this->_active_class]->Attributes[$c->name] = $c;
25             $this->classes[$this->_active_class]->Attributes[$c->name]->class =
26             $this->classes[$this->_active_class]->name;
27         }
28     }
29     
30     
31     function parse()
32     { //  read var declares in a class
33         $flags= array($this->look_nws(-1), $this->look_nws(-2), $this->look_nws(-3), $this->look_nws(-4));
34        
35         
36         $startpos = $this->pos;
37         
38         $var = new PHP_CodeDoc_Data_Var;
39         $var->name  = $this->tokens[$this->pos+2][1];
40         $var->type = "Public";
41         $var->isPublic = 1;
42         if ($var->name{1} == "_") {
43             $var->type = "Private";
44             $var->isPublic = 0;
45         }
46         $var->visibility = 1;
47         
48         PHP_CodeDoc_Parser_Var::_store_tokens($var);
49         
50         if ($v = PHP_CodeDoc_Parser_Comment::parse()) {
51             $var->description = $v;
52         }
53         $this->pos = $startpos;
54            
55         return $var;
56     
57     }
58     
59     /* 
60     remember the tokens for a var.. (for printing later)
61     */
62     function _store_tokens(&$var) { 
63         //return;
64         $var->tokenStart=$this->pos;
65         $n=0;
66         $in_method =0;
67         $inbrak =0;
68         $level=0;
69         $pos = $this->pos;
70         while ($pos < $this->total) {
71             $v = $this->tokens[$pos];
72             if (!is_array($v)) {
73                 if (trim($v) == ";") {
74                     $var->tokenEnd = $pos;
75                     return;
76                 }
77             }
78              
79             $var->tokens[$n] = $v;
80             $pos++;
81             $n++;
82         }
83         $var->tokenEnd = $pos;
84     }
85     
86     
87 }
88 ?>
89    
90