-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcd3193
commit 83aae9b
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
The GAP 4 package `debugger' | ||
============================== | ||
|
||
This package provides some common features from debuggers. | ||
|
||
At present, there are two main features: | ||
|
||
* Breakpoints | ||
- The function AddBreakpoint(filename, line) will force GAP to break | ||
when is reaches lines 'line' in file 'filename. | ||
|
||
* Controlling when to enter the break loop. | ||
- Once in the break loop, function BreakNextLine will make GAP break | ||
on the next line. Users can also break on: | ||
- BreakNextEnterFunction, BreakEveryEnterFunction | ||
- BreakNextLeaveFunction, BreakEveryLeaveFunction | ||
|
||
* Pretty print the state of variables | ||
- ShowLocals prints the variables of the current function |