diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-03-07 23:42:42 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-03-07 23:42:42 +0100 |
| commit | 1ccd9b3f2ffa449a11f2348314f0dcae2e224c6b (patch) | |
| tree | bcdd4ff23480f837a82e625cb7e0742b46b2ab78 /src/lib.rs | |
| parent | 294d304768dad5fca5f9844500c7003cd9f9ed8b (diff) | |
| download | sylt-1ccd9b3f2ffa449a11f2348314f0dcae2e224c6b.tar.gz | |
document Value::{Unknown,Nil}
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -178,7 +178,10 @@ pub enum Value { String(Rc<String>), Function(Vec<Rc<RefCell<UpValue>>>, Rc<RefCell<Block>>), ExternFunction(usize), + /// This value should not be present when running, only when type checking. + /// Most operations are valid but produce funky results. Unknown, + /// Should not be present when running. Nil, } |
