Subversion Repositories fastphp

Rev

Rev 92 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 92 Rev 99
Line 93... Line 93...
93
 
93
 
94
                        $token = (!is_array($data)) ? null : $data[0];
94
                        $token = (!is_array($data)) ? null : $data[0];
95
                        $value = (!is_array($data)) ? null : $data[1];
95
                        $value = (!is_array($data)) ? null : $data[1];
96
                        $line  = (!is_array($data)) ? null : $data[2];
96
                        $line  = (!is_array($data)) ? null : $data[2];
97
 
97
 
98
                        if ($value == '${') $dep++;
98
                        if ($value == '${') $dep++; // TODO: "${...}" ??? "{$...}" ???
99
 
99
 
100
                        if ($wait_function && ($data == '{')) {
100
                        if ($wait_function && ($data == '{')) {
101
                                $wait_function = false; // Anonymous functions do not have a name
101
                                $wait_function = false; // Anonymous functions do not have a name
102
                        }
102
                        }
103
 
103