Skip to content

Commit

Permalink
Prepare for v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Feb 14, 2021
1 parent bcd3193 commit 83aae9b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "debugger",
Subtitle := "Debugging support for GAP",
Version := "0.3",
Date := "08/06/2018", # dd/mm/yyyy format
Version := "0.4",
Date := "13/02/2021", # dd/mm/yyyy format
License := "MPL-2.0",

Persons := [
Expand Down
16 changes: 16 additions & 0 deletions README.md
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

0 comments on commit 83aae9b

Please sign in to comment.