[Doxygen-develop] Tcl parsing problem
Brought to you by:
dimitri
From: Roland V. <rv...@br...> - 2014-04-28 08:14:19
|
Hello Albert, When parsing a certain Tcl file, I noted that the majority of Tcl procs did not show up in Doxygens html output. I did some experiments and could drill it down to the following: <some_file.tcl> proc foo {} { # if { ($classifier_state == {{bphy} } ) } { OK if { ($classifier_state == {{bphy} }) } { ;# NOK puts "this proc is always shown in html output" } } proc bar {} { puts "this proc is not shown in html output in NOK case" } Note the subtle difference between the two 'if' statements: there is an extra space character between a '}' and the ')'. Is this something you can look at ? Thanks, Roland. |