Remove stuff
Preparing for a very simple parser.
This commit is contained in:
parent
f42aec4132
commit
fafb58adfa
7 changed files with 49 additions and 152 deletions
17
src/value.rs
Normal file
17
src/value.rs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
use std::fmt::Debug;
|
||||
|
||||
use crate::table::Table;
|
||||
|
||||
// TODO: Unwrap the Key part so this is only 16, not 24 bytes
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub enum Value {
|
||||
// Bool(bool),
|
||||
// Builtin(Builtin),
|
||||
Int(i64),
|
||||
// String(Box<String>),
|
||||
Table(Table),
|
||||
|
||||
// Float(f64),
|
||||
// Nil,
|
||||
// Path(Table),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue