semantic interpreter v1, semantic interpreter tests, fixes

This commit is contained in:
ProgramSnail 2025-12-14 15:59:18 +03:00
parent 1c74f0c3ef
commit a2d4bb93e6
4 changed files with 350 additions and 4 deletions

View file

@ -19,9 +19,25 @@
GT.ppx_all
ppx_inline_test)))
; (library
; (name lib2)
; (modules lib_next)
; (flags (-rectypes))
; (libraries OCanren OCanren.tester)
; (inline_tests)
; (wrapped false)
; (preprocess
; (pps
; OCanren-ppx.ppx_repr
; OCanren-ppx.ppx_fresh
; OCanren-ppx.ppx_distrib
; GT.ppx
; GT.ppx_all
; ppx_inline_test)))
(library
(name lib2)
(modules lib_next)
(name semantic_interpreter)
(modules semantic_interpreter)
(flags (-rectypes))
(libraries OCanren OCanren.tester)
(inline_tests)
@ -33,4 +49,5 @@
OCanren-ppx.ppx_distrib
GT.ppx
GT.ppx_all
ppx_expect
ppx_inline_test)))