Created
October 25, 2011 20:14
-
-
Save samth/1314097 to your computer and use it in GitHub Desktop.
Producing explicit type errors for uncovered cases in Typed Racket
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang typed/racket | |
(define-syntax (cond* stx) | |
(syntax-case stx () | |
[(_ x clause ...) | |
#`(cond clause ... [else (typecheck-fail #,stx "incomplete coverage" #:covered-id x)])])) | |
(: f : (U String Integer) -> Boolean) | |
(define (f x) | |
(cond* x | |
[(string? x) #t] | |
[(exact-nonnegative-integer? x) #f])) | |
;; Produces the error: | |
;; Type Checker: incomplete coverage; missing coverage of Negative-Integer in: | |
;; (cond* x ((string? x) #t) ((exact-nonnegative-integer? x) #f)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment