Cleaned tests for FB case 94 (logn match on a predefined set of identifiers).

This commit is contained in:
Georges Dupéron 2016-02-03 17:07:26 +01:00
parent 895d11b30f
commit 5d0a390b61

View File

@ -6,6 +6,8 @@
racket/match
syntax/stx))
(provide define-logn-ids)
(begin-for-syntax
(define (insert make-node v ts)
(match ts
@ -60,6 +62,16 @@
#'(let ([v-cache v])
#,(make-btd bt))])))]))
(define-logn-ids match-x [a A] [b B] [c C] [d D] [e E])
(match-x b [a 1] [b 2] [c 3] [d 4] [e 5])
(module* test typed/racket
(require (submod "..")
typed/rackunit)
(define-logn-ids match-x [a A] [b B] [c C] [d D] [e E])
(check-equal? (match-x (ann b (U A B C D E))
[a 1]
[b 2]
[c 3]
[d 4]
[e 5])
2))