Document show-requires.

This commit is contained in:
Vincent St-Amour 2011-05-31 14:43:25 -04:00
parent b39f21775a
commit f24f451fd9

View File

@ -368,3 +368,12 @@ Example (from racket root directory):
@commandline{racket -l macro-debugger/analysis/check-requires-script \ @commandline{racket -l macro-debugger/analysis/check-requires-script \
collects/syntax/*.rkt} 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.
}