Closed Orvid closed 10 years ago
Currently this declaration:
static void deepIterateType(ref TILType tp, void delegate(ref TILType tp) processType)
Generates this tooltip:
static void deepIterateType( ref TILType tp, void delegate(TILType tp) processType )
Note that the ref specifier on the tp parameter of processType doesn't show up in the tooltip, even though it is an important part of the function's declaration.
ref
tp
processType
Currently this declaration:
Generates this tooltip:
Note that the
ref
specifier on thetp
parameter ofprocessType
doesn't show up in the tooltip, even though it is an important part of the function's declaration.