Properly recover from errors
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
f4e8137e17
commit
b07bef7904
4 changed files with 157 additions and 120 deletions
7
src/eval/mod.rs
Normal file
7
src/eval/mod.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
pub struct EvalStack {
|
||||
stack: Vec<Evaluation>,
|
||||
}
|
||||
|
||||
pub enum Evaluation {
|
||||
AppendContent { content: String },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue