Source Code Pane

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 6.5 (Modified)


The Source Code pane shows the source code of the method being traced.

If the method is too long to fit in the text area, you can scroll to view other parts of the method.

Moving the mouse pointer over any expression that can be evaluated (field, variable, pointer, array,...) will cause a Tool Tip to display the current value of the object or expression and its declared type.

Here is an example of the Source Code pane:

A tool tip is displayed because the mouse pointer was over the variable pTable which, according to the tool tip, is a pointer to the table [Customers].

You can also select a portion of the text in the area displaying the code being executed. In this case, when the cursor is placed above the selected text, a tip displays the selected object's value:

When you click on a variable name or field, it is automatically selected.

Tip: It is possible to copy any selected expression (that can be evaluated) from the Source Code pane to the Custom Watch pane. You can use one of the following ways:

by simply dragging and dropping (click on the selected text, drag it and drop it in the evaluation area).

by clicking on the selected text while holding down the Ctrl (Windows) or Command (Mac OS) key.

by using the Ctrl+D (Windows) or Command+D (Mac OS) key combinations.

Program Counter


A yellow arrow in the left margin of the Source Code pane (see the figure above) marks the next line that will be executed. This arrow is called the program counter. The program counter always indicates the line that is about to be executed.

For debugging purposes, you can change the program counter for the method being on top of the call chain (the method actually being executed). To do so, click and drag the yellow arrow vertically, to the line you want.

WARNING: Use this feature with caution!

Moving the program counter forward does NOT mean that the debugger is rapidly executing the lines you skip. Similarily, moving the program counter backward does NOT mean that the debugger is reversing the effect of the lines that has already been executed.

Moving the program counter simply tells the debugger to "pursue tracing or executing from here." All current settings, fields, variables, and so on are not affected by the move.

Here is an example of moving the program counter. Let's say you are debugging the following code:

      ` ...
   If (This condition)
      DO SOMETHING
   Else
      DO SOMETHING ELSE
   End if
      ` ...

The program counter is set to the line If (This condition). You step once and you see that the program counter moves to the line DO SOMETHING ELSE. This is unfortunate, because you wanted to execute the other alternative of the branch. In this case, and provided that the expression This condition does not perform operations affecting the next steps in your testing, just move the program counter back to the line DO SOMETHING. You can now continuing tracing the part of the code in which you are interested.

Setting Break Points in the Debugger


In the debugging process, you may need to skip the tracing of some parts of the code. The debugger offers you several ways to execute code up to a certain point:

While stepping, you can click on the Step Over button instead of Step Into button. This is useful when you do not want to enter into possible subroutines or functions called in the program counter line.

If you mistakenly entered into a subroutine, you can execute it and directly go back to the caller method by clicking on the Step Out button.

If you have a TRACE call placed at some point, you can click the No Trace button, which resumes the execution up to that TRACE call.

Now, let's say you are executing the following code, with the program counter set to the line ALL RECORDS([ThisTable]):

      ` ...
   ALL RECORDS([ThisTable])
   $vrResult:=0
   For($vlRecord;1;Records in selection([ThisTable]))
      $vrResult:=This Function([ThisTable]))
      NEXT RECORD([ThisTable])
   End for
   If ($vrResult>=$vrLimitValue)
      ` ...

Your goal is to evaluate the value of $vrResult after the For loop has been completed. Since it takes quite some execution time to reach this point in your code, you do not want to abort the current execution, then edit the method in order to insert a TRACE call before the line If ($vrResult....

One solution is to step through the loop, however, if the table [ThisTable] contains several hundreds records, you are going to spend the entire day for this operation. In this type of situation, the debugger offers you break points. You can insert break points by clicking in the left margin of the Source Code pane.

For example:

You click in the left margin of the Source Code pane at the level of the line If ($vrResult...:

This inserts a break point for the line. The break point is indicated by a red bullet. Then click the No Trace button.

This resumes the normal execution up to the line marked with the break point. That line is not executed itself—you are back to the trace mode. In this example, the whole loop has consequently been executed normally. Then, when reaching the break point, you just need to move the mouse button over $vrResult to evaluate its value at the exit point of the loop.

Setting a break point beyond the program counter and clicking the No Trace button allows you to skip portions of the method being traced.

Note: You can also set break points directly in 4D's Method Editor. Please refer to the section Break Points.

A red break point is a persistent break point. Once you created it, it "stays." Even though you quit the database, then reopen it later on, the break point will be there.

There are two ways to eliminate a persistent break point:

If you are through with it, just remove it by clicking on the red bullet—the break point disappears.

If you are not totally through with it, you may want to keep the break point. You can temporarily disable the break point by editing it. This explained in the section Break Points.

See Also

Break Points, Call Chain Pane, Custom Watch Pane, Debugger, Watch Pane.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next