Wish Find all References should also find references in CallSub

Sandman

Expert
Licensed User
Longtime User
Let's say I have this code in the module ForumModule:
B4X:
Public Sub wienerDog

    Msgbox("Very long", "Dog")

End Sub

And this code in another module:
B4X:
CallSub(ForumModule, "wienerDog")

If I place the cursor in the sub name in the first code block and find references, it finds the CallSub just fine. But if I place the cursor in the sub name in CallSub command I cannot find any references. (I also can't control-click it to jump to the wienerDog sub, which would also be a nice feature to have.)
 
Top