https://github.com/brummett/devel-chitin
Abstract base class for Perl debuggers
https://github.com/brummett/devel-chitin
api debugger hacktoberfest perl
Last synced: 3 months ago
JSON representation
Abstract base class for Perl debuggers
- Host: GitHub
- URL: https://github.com/brummett/devel-chitin
- Owner: brummett
- Created: 2013-06-21T20:46:42.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T16:22:10.000Z (over 2 years ago)
- Last Synced: 2025-03-23T04:11:21.608Z (4 months ago)
- Topics: api, debugger, hacktoberfest, perl
- Language: Perl
- Homepage:
- Size: 1.48 MB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
[](https://travis-ci.org/brummett/Devel-Chitin)
## Devel::ChitinProgrammatic interface to the Perl debugging API
This class exposes the Perl debugging facilities as an API useful for
implementing debuggers, tracers, profilers, etc so they can all benefit from
common code.Devel::Chitin is not a usable debugger per se. It has no mechanism for interacting
with a user such as reading command input or printing retults. Instead,
clients of this API may call methods to inspect the debugged program state.
The debugger core calls methods on clients when certain events occur, such
as when the program is stopped by breakpoint or when the program exits.
Multiple clients can attach themselves to Devel::Chitin simultaneously within
the same debugged program.