Evaluating expressions

When the execution is suspended (due to hitting a breakpoint or stepping through code), you can evaluate expressions in the context of a stack frame.

  1. Select the stack frame in which an evaluation is to be performed.
  2. Expressions can be entered and evaluated in the Expressions View or in the Display View.
Expressions View

The expression must be a valid DXL expression. It must be typically what you would set in the right side of a variable assignment:

The expression can reference variables defined in the stackframe selected in the Debug View. The expression can use DXL predefined functions. However you cannot use functions defined the DXL file being debugged.

Expression View

To evaluate an expression:

  1. Select the Expression View
  2. Right-click Add Watch Expression...
  3. Enter a DXL expression in the dialog box that is opened and click OK

An Expression can be enabled or disabled. If the expression is enabled, it will be reevaluated each time the DXL execution hits a breakpoint or when you step into a new statement.

If you define many enabled expressions, a lot of communication between the DXL Editor and DOORS will occur, which may lead to a performance penalty. You are recommended in that case to disable some expressions, and to manually request the evaluation when desired by right-clicking Reevaluate Watch Expression.

Display View

To evaluate an expression:

  1. Select the Display View
  2. Enter a DXL expression in the text area of this view
  3. Right-click Display

The expression is evaluated and its result is displayed inline in the view.

Related concepts
Debugger

Related tasks
Adding Line Breakpoints
Launching a DXL program in debug mode
Stepping through the execution of a DXL program

Related reference
Debugger Known Limitations
Debugger Troubleshooting