Further debugger bubble help improvement
The debugger would be hugely more productive if hovering over a path showed the value at that path, but at present the debugger just ignores the hover.
For example, I have the following code:
previousContract := sm.getCurrentContract(sc.startDate - 1);
If I hover over sm, or sc, the debugger shows me the object reference (not particularly helpful!) but if I hover over startDate I see nothing.
The debugger should evaluate the expression to the point I'm hovering over and show me the result.
At present if I want to see the value of sc.startDate either have to highlight the complete path, or view it by using the inspector.