fix: parse & compile, add null & array support

This commit is contained in:
Faynot
2026-05-18 18:30:04 +03:00
parent 4d91abc9ce
commit e01490774d
4 changed files with 102 additions and 46 deletions

View File

@@ -16,6 +16,8 @@ pub enum Value {
FsPath(String),
Variable(String),
Rhei(String),
Null,
Array(Vec<Value>),
}
#[derive(Debug, Clone)]