trying to eliminate use of Any; something about it is breaking with typed racket in 5.3.1

This commit is contained in:
Danny Yoo 2012-10-23 17:45:47 -06:00
parent ed4e00e952
commit 433a73aefa

View File

@ -1,18 +1,20 @@
#lang typed/racket/base
(require/typed racket/path
(normalize-path (Path -> Path)))
(require/typed typed/racket/base
(relative-path? (Any -> Boolean))
(find-executable-path (Path Path -> Path)))
(provide collects-path)
(define collects-path
(normalize-path
(let ([p (find-system-path 'collects-dir)])
(let: ([p : Path (find-system-path 'collects-dir)])
(cond
[(relative-path? p)
(find-executable-path (find-system-path 'exec-file)
(find-system-path 'collects-dir))]
(define maybe-path (find-executable-path (find-system-path 'exec-file)
(find-system-path 'collects-dir)))
(cond
[(path? maybe-path)
maybe-path]
[else
(error 'collects-path "Could not find collects path")])]
[else
p]))))