14

Suppose I'm stopped at a breakpoint in Workbench, say at one of the y = ... lines in:

foo[a_] := Block[{y}, 
    If[Sin[a] > 0,
        y = -1,
        y = 1
        ]
    ]

How can I find out what Sin[a] is? Or more generally do some other evaluation using the current state of my program?

rm -rf
  • 88,781
  • 21
  • 293
  • 472
Brett Champion
  • 20,779
  • 2
  • 64
  • 121

1 Answers1

14

You can enter arbitrary expressions in the Expressions debugging view:

screenshot of Wolfram Workbench debugger

The function VariableValue must be used in such expressions in order to access any active variables.

If the Expressions view is not visible, you can open it from the Workbench main menu using Window / Show View... / Expressions.

WReach
  • 68,832
  • 4
  • 164
  • 269