diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-30 17:46:23 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-30 17:46:23 +0300 |
commit | d2d4d5cffdce0ce28e59732f56a771f8fc3431de (patch) | |
tree | b3c84baa1208064632572a19a734c6f6c5240dfe /src/sexp | |
parent | 69bcc7d4d306d1c8a7596ae13641ffe479d98dcc (diff) | |
download | myslip-d2d4d5cffdce0ce28e59732f56a771f8fc3431de.tar.gz myslip-d2d4d5cffdce0ce28e59732f56a771f8fc3431de.zip |
Added tests for tokens_to_ast
Diffstat (limited to 'src/sexp')
-rw-r--r-- | src/sexp/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sexp/mod.rs b/src/sexp/mod.rs index dee672f..020ba63 100644 --- a/src/sexp/mod.rs +++ b/src/sexp/mod.rs @@ -17,6 +17,8 @@ pub enum SLeaf { Div, Int(i32), Var(String), + Quote, + Nil, } /// An S-Expression; the defining structure of the language. |