aBothe / Mono-D

D Add-In for MonoDevelop
http://wiki.dlang.org/Mono-D
Other
113 stars 26 forks source link

Tooltip drops ref qualifier on delegate parameters #520

Closed Orvid closed 10 years ago

Orvid commented 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.