Evaluate some simple statements

This commit is contained in:
Joscha 2021-12-04 22:37:01 +01:00
parent 778576a63c
commit 3a219ecac2
6 changed files with 184 additions and 12 deletions

View file

@ -18,6 +18,9 @@ pub enum Error {
start: NaiveDate,
prev: NaiveDate,
},
/// A `MOVE a TO b` statement was executed, but there was no entry at the
/// date `a`.
MoveWithoutSource { span: Span },
}
pub type Result<T> = result::Result<T, Error>;