Cleaned up tests

This commit is contained in:
Georges Dupéron 2017-04-06 10:40:37 +02:00
parent a0d682cb6c
commit 36ae2e8080
3 changed files with 56 additions and 9 deletions

View File

@ -612,7 +612,9 @@ Two sorts of paths inside (in)equality constraints:
NonTarget NonTarget
ε ε
witness-value witness-value
(for-syntax parse-path)) (for-syntax parse-path)
AnyType
AnyField)
<parse> <parse>

View File

@ -9,13 +9,47 @@
(syntax-case stx () (syntax-case stx ()
[(_ . π) [(_ . π)
(parse-path #'π)])) (parse-path #'π)]))
(eval #'(#%top-interaction . (:type (Π (λdot a aa) ((λdot b c))* (λdot d e))))
(variable-reference->namespace (#%variable-reference))) (check-same-type
(Π (λdot a aa) ((λdot b c))* (λdot d e))
(Rec
R
(U (Pairof Any R)
(Pairof
(Pairof 'a AnyType)
(Pairof
(Pairof 'aa AnyType)
(Rec
R
(U (Pairof
(Pairof 'b AnyType)
(Pairof (Pairof 'c AnyType) R))
(List (Pairof 'd AnyType) (Pairof 'e AnyType)))))))))
(struct a ()); the field. (struct a ()); the field.
(eval #'(#%top-interaction . (:type (Π (dot :a aa) ((λdot b c))* (λdot d e)))) (check-same-type
(variable-reference->namespace (#%variable-reference))) (Π (dot :a aa) ((λdot b c))* (λdot d e))
(eval #'(#%top-interaction . (:type (Π (dot :a) ((λdot b c))* (λdot d e)))) (Rec
(variable-reference->namespace (#%variable-reference))) R
(U (Pairof Any R)
(Pairof
(Pairof AnyField a)
(Pairof
(Pairof 'aa AnyType)
(Rec
R
(U (List (Pairof 'd AnyType) (Pairof 'e AnyType))
(Pairof (Pairof 'b AnyType) (Pairof (Pairof 'c AnyType) R)))))))))
(check-same-type
(Π (dot :a) ((λdot b c))* (λdot d e))
(Rec
R
(U (Pairof Any R)
(Pairof
(Pairof AnyField a)
(Rec
R
(U (List (Pairof 'd AnyType) (Pairof 'e AnyType))
(Pairof (Pairof 'b AnyType) (Pairof (Pairof 'c AnyType) R))))))))
#| #|

View File

@ -1,7 +1,8 @@
#lang type-expander #lang type-expander
(provide check-a-same-as-b (provide check-a-same-as-b
check-a-stronger-than-b) check-a-stronger-than-b
check-same-type)
(require phc-toolkit (require phc-toolkit
(lib "phc-graph/invariants-phantom.hl.rkt") (lib "phc-graph/invariants-phantom.hl.rkt")
@ -23,3 +24,13 @@
(begin (begin
(check-ann (ann witness-value a) b) (check-ann (ann witness-value a) b)
(check-ann (ann witness-value b) a)))])) (check-ann (ann witness-value b) a)))]))
(define-syntax (check-same-type stx)
(syntax-case stx ()
[(_ a b)
(syntax/top-loc stx
(begin
(check-not-exn:
(λ () (λ ([x : a]) (check-ann x b))))
(check-not-exn:
(λ () (λ ([x : b]) (check-ann x a))))))]))