Remove stale comment.

original commit: 86490943a328e56b511cfec126497a8cec81e2d1
This commit is contained in:
Vincent St-Amour 2011-07-22 16:46:10 -04:00
parent c6d6b97247
commit 3dd9d251c2

View File

@ -178,11 +178,6 @@
;; is fun-ty subsumed by a function type in others?
(define (is-subsumed-in? fun-ty others)
;; assumption: domains go from more specific to less specific
;; thus, a domain can only be subsumed by another that is further down
;; the list.
;; this is reasonable because a more specific domain coming after a more
;; general domain would never be matched
;; a case subsumes another if the first one is a subtype of the other
(ormap (lambda (x) (subtype x fun-ty))
others))