Tweaks; works, ish, with more recent redex

This commit is contained in:
William J. Bowman 2015-10-03 13:21:57 -04:00
parent 6e581ed8d8
commit bfb5edf0a3
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A

View File

@ -1298,9 +1298,14 @@
----------------- "DTR-Elim_D" ----------------- "DTR-Elim_D"
(ill-typed-infer Σ Γ (elim x_D U) t)] (ill-typed-infer Σ Γ (elim x_D U) t)]
[----------------- "DTR-Infer-Fail" [(side-condition (not-typed-infer Σ Γ e))
----------------- "DTR-Infer-Fail"
(ill-typed-infer Σ Γ e (Unv 1001))]) (ill-typed-infer Σ Γ e (Unv 1001))])
(define-metafunction tt-typingL
[(not-typed-infer Σ Γ e)
,(not (judgment-holds (type-infer Σ Γ e t)))])
(define-judgment-form tt-typingL (define-judgment-form tt-typingL
#:mode (ill-typed-check I I I I) #:mode (ill-typed-check I I I I)
#:contract (ill-typed-check Σ Γ e t) #:contract (ill-typed-check Σ Γ e t)
@ -1336,6 +1341,7 @@
(not (dtr-fail? d))) (not (dtr-fail? d)))
;; At top-level, if there are any non-failing derivations, remove all failing derivations ;; At top-level, if there are any non-failing derivations, remove all failing derivations
;; TODO: Really need to do more pruning. Or maybe throw this out and try a more principled approach.
(define (prefer-nonfailing fds) (define (prefer-nonfailing fds)
(if (findf dtr-non-fail? fds) (if (findf dtr-non-fail? fds)
(remf* dtr-fail? fds) (remf* dtr-fail? fds)
@ -1371,7 +1377,7 @@
"Expected ~a but inferred ~a" "Expected ~a but inferred ~a"
(fifth (derivation-term fd)) (fifth (derivation-term fd))
(fifth (derivation-term (last (derivation-subs fd))))) (fifth (derivation-term (last (derivation-subs fd)))))
a))] `(,(car a) ,(fourth (derivation-term (last (derivation-subs fd)))) ,@(cdr a))))]
[(dtr-infer-fail? fd) [(dtr-infer-fail? fd)
(lambda a (lambda a
(apply raise-syntax-error (apply raise-syntax-error
@ -1392,10 +1398,6 @@
(require racket/pretty) (require racket/pretty)
(define (derivations->errorf fds) (define (derivations->errorf fds)
(pretty-display (prefer-nonfailing (remove-sigma/gamma fds)))
#;(for ([fd (clean-derivs fds)])
(with-handlers ([values (lambda e (pretty-display fd))])
(printf "~a: ~a ~a~n" (derivation-name fd) (fourth (derivation-term fd)) (fifth (derivation-term fd)))))
(derivation->errorf (find-first-fail (clean-derivs fds)))) (derivation->errorf (find-first-fail (clean-derivs fds))))
;; Produces a function that can take any of the optional arguments to raise-syntax-error, and will ;; Produces a function that can take any of the optional arguments to raise-syntax-error, and will
@ -1410,6 +1412,11 @@
(ill-typed-check ,Σ (ill-typed-check ,Σ
((((elim nat (Unv 0)) nat) (s zero)) zero) ((((elim nat (Unv 0)) nat) (s zero)) zero)
nat)) nat))
((type-judgment-error
(ill-typed-check ,Σ
((((elim nat (Unv 0)) nat) (s zero)) zero)
nat))
'((((elim nat (Unv 0)) nat) (s zero)) zero))
(check-exn (check-exn
exn:fail:syntax? exn:fail:syntax?
(thunk (thunk