SET CHANGE command

Controls the frequency of checking the AT CHANGE breakpoints. The initial setting is STATEMENT/LINE.

Read syntax diagramSkip visual syntax diagramSETCHANGESTATEMENTALLBLOCKLINEPATH;
STATEMENT
Specifies that the AT CHANGE breakpoints are checked at all statements. STATEMENT is equivalent to LINE.
ALL
Specifies that the AT CHANGE breakpoints are checked at all statements, block entry and exits, and path points.
BLOCK
Specifies that the AT CHANGE breakpoints are checked at all block entry and exits, except for C and C++ nested blocks.
LINE
Is equivalent to STATEMENT.
PATH
Specifies that the AT CHANGE breakpoints are checked at all path points.

Examples

  • Specify that AT CHANGE breakpoints are checked at all statements.
    SET CHANGE;
  • Specify that AT CHANGE breakpoints are checked at all path points.
    SET CHANGE PATH;