Properly recover from errors

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-03-05 17:33:19 +01:00
parent f4e8137e17
commit b07bef7904
4 changed files with 157 additions and 120 deletions

7
src/eval/mod.rs Normal file
View file

@ -0,0 +1,7 @@
pub struct EvalStack {
stack: Vec<Evaluation>,
}
pub enum Evaluation {
AppendContent { content: String },
}