@deffunc does not work correctly
Brought to you by:
jamespalmer,
talin
if using @deffunc like following,
@deffunc function void function(void)
MemberRecord of function is set as following.
name = "function"
longname = "function"
fullname = "functionvoid function(void)"
decl = "void function(void)"
It seems not consistent with usual functions.
I guess it should be set like following.
name = "function"
longname = "function()"
fullname = "void function(void)"
decl = "void function(void)"
And additionally, the ducumentation introduces @deffunc
as following,
@deffunc ASSERT ASSERT( <expression< );
but last ';' seems unnecessary.