updating contracts

This commit is contained in:
Spencer Florence 2015-02-14 22:10:01 -05:00
parent 82ad1bfad5
commit f4b9c71af3

View File

@ -3,6 +3,6 @@
(require racket/contract)
(define file-coverage/c (listof (list/c boolean? srcloc?)))
(define coverage/c (hash/c (and/c path-string? absolute-path?)
file-coverage/c))
;; if its a file path, will be an absolute path
(define coverage/c (hash/c any/c file-coverage/c))
(define coverage-gen/c (->* (coverage/c) (path-string?) any))