X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;f=tests.scm;h=4e14fb6ab8ee3634b1fce5be5166d55fe8455d96;hb=89ef32141732e6d0bbfc7484b465844b62d8d139;hp=4e50dc61908cee17c4d1c1ada96c57282abf5830;hpb=a64f7097fa246c19a4c69d0aad65e60378273887;p=scheme.git diff --git a/tests.scm b/tests.scm index 4e50dc6..4e14fb6 100644 --- a/tests.scm +++ b/tests.scm @@ -43,6 +43,25 @@ (let ((str (read-file "/tmp/test-output.txt"))) (test str output))) +(test (data-tors (data-layout '(data A + (foo Int Bool) + (bar Bool)))) + '((foo . (constructor . (abs Int (abs Bool A)))) + (foo~0 . (0 . (abs A Int))) + (foo~1 . (1 . (abs A Bool))) + (bar . (constructor . (abs Bool A))) + (bar~0 . (0 . (abs A Bool))))) + +(test (data-tors-env + (data-layout '(data A + (foo Int Bool) + (bar Bool)))) + '((foo . (abs Int (abs Bool A))) + (foo~0 . (abs A Int)) + (foo~1 . (abs A Bool)) + (bar . (abs Bool A)) + (bar~0 . (abs A Bool)))) + (test-types (typecheck '((lambda (x) (+ ((lambda (y) (x y 3)) 5) 2)))) '(abs (abs Int (abs Int Int)) Int)) @@ -95,6 +114,9 @@ (pow 4 2)))) 'Int) + ; ADTs + + (test-types (typecheck '((data A @@ -115,6 +137,27 @@ y))) 'Int) + + ; pattern matching +(test (let-bindings '(let ([(foo x) a]) x)) + '((x (foo~0 a)))) + +(test (let-bindings '(let ([x (foo 42)] [(foo y) x]) x)) + '((x (foo 42)) + (y (foo~0 x)))) + + ; type annotations + +(test (annotate-types + '((let ([x 42] + [y (+ 1 x)]) + (- y x)))) + + '((let () + ((let ((x 42 : Int) + (y ((((+ : (abs Int (abs Int Int))) (1 : Int)) : (abs Int Int)) (x : Int)) : Int)) + (((((- : (abs Int (abs Int Int))) (y : Int)) : (abs Int Int)) (x : Int)) : Int)))))) + (test-expr '(+ 1 2) 3) (test-expr '(bool->int (= 2 0)) 0) (test-expr '((lambda (x) ((lambda (y) (+ x y)) 42)) 100) 142) @@ -168,3 +211,16 @@ (go p 1)))]) (pow 4 2)) 16) + + ; mutual recursion +;; (test-prog-stdout '((let ([f (lambda (n) +;; (if (= n 0) +;; 0 +;; (let () +;; (print "a") +;; (g (- n 1)))))] +;; [g (lambda (m) +;; (let () +;; (print "b") +;; (f (- m 1))))]) +;; (f 10))) "ababababab")