diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-19 13:55:05 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-19 13:55:05 +0300 |
commit | a70dcaa949f41c585f9aea5e79f2550053d8e857 (patch) | |
tree | 9366f0b1e026c009708ebc243d006a79cbf452c9 /src/sexp/mod.rs | |
parent | d4d6e972650370d529363f7db3946e58bdbd7bca (diff) | |
download | myslip-a70dcaa949f41c585f9aea5e79f2550053d8e857.tar.gz myslip-a70dcaa949f41c585f9aea5e79f2550053d8e857.zip |
test: added boilerplate and tests for coproduct parsing, type checking and evaluation
Diffstat (limited to 'src/sexp/mod.rs')
-rw-r--r-- | src/sexp/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sexp/mod.rs b/src/sexp/mod.rs index 1a90f52..14731dd 100644 --- a/src/sexp/mod.rs +++ b/src/sexp/mod.rs @@ -34,6 +34,9 @@ pub enum SLeaf { Quote, Vector, + Coprod, + Inl, + Inr, Let, |