4

Consdier the following package

BeginPackage["packageName`"];
   exportedFunction::usage = "...";
   Begin["`Private`"];
      globalVariable = Null;
      initializePackage[args___] := (globalVariable = workOn1[args]);
      exportedFunction[args___] := 
         Block[{localVariable},
            If[globalVariable===Null, Abort[]];
            localVariable = workOn2[globalVariable, args];
            workOn3[localVariable]
         ];
      workOn1[args___] := ...;
      workOn2[gv_, args___] := ...;
      workOn3[lv_] := ...;
   End[];
EndPackage[];

and assume that is being debugged in a workbench session, and that a break point has been set somewhere in exportedFunction. The debugger reports on the values of localVariable, but I can never see the value of globalVariable. Is there a way to inspect the value of globalVariable as well?

zorank
  • 829
  • 4
  • 14

1 Answers1

3

The Workbench's Expressions debugging view allows to evaluate any arbitrary expression, including global variables. While stopped at a breakpoint, press the Create a new watch expression button in the Expressions view and enter the name of the global variable as the expression. If the Expressions view is not visible, you can open it from the Workbench main menu using Window / Show View... / Expressions.

In contrast, if one wants to inspect a local variable x one must use the watch expression VariableValue[x].

We are not limited to referencing global and local variables. Any expression can be watched (see Inspecting non-variable state from a breakpoint in Workbench for a screenshot).

WReach
  • 68,832
  • 4
  • 164
  • 269
  • I understand finally! I tried it though, and could not make it work. The expression (a global private variable in the package) never evaluates. Do I have to reference with the full name (including the context)? – zorank Apr 04 '14 at 15:36
  • 1
    @zorank Yes, a private variable would need to be fully qualified. For example, packageName`Private`globalVariable (from the question). – WReach Apr 05 '14 at 02:57
  • Domo arigato! It works! Just tested it. – zorank Apr 07 '14 at 09:19