www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit d3f24529feba1907387a883465541d56cd4b6f3e
parent 3fdfbc772f1b460a7bbc8e30eff8acc5875cb7db
Author: Vincent St-Amour <stamourv@racket-lang.org>
Date:   Tue, 31 May 2011 14:43:25 -0400

Document show-requires.

original commit: f24f451fd92ece5370a6653935e1a66a289b1f16

Diffstat:
Mcollects/macro-debugger/macro-debugger.scrbl | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/collects/macro-debugger/macro-debugger.scrbl b/collects/macro-debugger/macro-debugger.scrbl @@ -368,3 +368,12 @@ Example (from racket root directory): @commandline{racket -l macro-debugger/analysis/check-requires-script \ collects/syntax/*.rkt} + + +@defproc[(show-requires [module-name module-path?]) + (listof (list/c 'keep module-path? number? (or/c string? #f)) + (list/c 'bypass module-path? number?) + (list/c 'drop module-path? number?))]{ +Similar to @racket[check-requires], but outputs module paths instead of +module path indexes, for more readability. +}