CodeDoc/Parser/Var.php
[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 (in_array(T_PRIVATE, $flags)) {
43             $method->type = "Private";
44             $method ->isPublic = 0;
45             $method->visibility = 0;
46         }
47         if (in_array(T_PROTECTED, $flags)) {
48             $method->type = "Protected";
49             $method ->isPublic = 0;
50             $method->visibility = 0;
51         }
52         $var->visibility = 1;
53         
54         PHP_CodeDoc_Parser_Var::_store_tokens($var);
55         
56         if ($v = PHP_CodeDoc_Parser_Comment::parse()) {
57             $var->description = $v;
58         }
59         $this->pos = $startpos;
60            
61         return $var;
62     
63     }
64     
65     /* 
66     remember the tokens for a var.. (for printing later)
67     */
68     function _store_tokens(&$var) { 
69         //return;
70         $var->tokenStart=$this->pos;
71         $n=0;
72         $in_method =0;
73         $inbrak =0;
74         $level=0;
75         $pos = $this->pos;
76         while ($pos < $this->total) {
77             $v = $this->tokens[$pos];
78             if (!is_array($v)) {
79                 if (trim($v) == ";") {
80                     $var->tokenEnd = $pos;
81                     return;
82                 }
83             }
84              
85             $var->tokens[$n] = $v;
86             $pos++;
87             $n++;
88         }
89         $var->tokenEnd = $pos;
90     }
91     
92     
93 }
94 ?>
95    
96