mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
18 lines
490 B
Scheme
18 lines
490 B
Scheme
|
|
;;> \subsubsubsection{(trace proc)}
|
|
|
|
;;> Write a trace of all calls to the procedure \var{proc} to
|
|
;;> \scheme{(current-error-port)}.
|
|
|
|
;;> \subsubsubsection{(untrace proc)}
|
|
|
|
;;> Remove any active traces on the procedure \var{proc}.
|
|
|
|
;;> \subsubsubsection{(untrace-all)}
|
|
|
|
;;> Remove all active procedure traces.
|
|
|
|
(define-library (chibi trace)
|
|
(export trace untrace untrace-all trace-cell untrace-cell)
|
|
(import (chibi) (chibi ast) (srfi 38) (srfi 39) (srfi 69))
|
|
(include "trace.scm"))
|