diff options
| author | tslil <tslil@posteo.de> | 2026-04-21 14:01:59 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-04-23 08:13:04 +0100 |
| commit | ae4ee8c9ffbce7917c2be0e9a9063a14ea230f06 (patch) | |
| tree | 154f34b389801b226ad0ba51c1b2797ed764559b /src/checker.rs | |
Init
Diffstat (limited to 'src/checker.rs')
| -rw-r--r-- | src/checker.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/checker.rs b/src/checker.rs new file mode 100644 index 0000000..ea099ab --- /dev/null +++ b/src/checker.rs @@ -0,0 +1,7 @@ +use crate::parser::*; + +pub enum CheckError { + Unbound(String), + DuplicateField(String), + ExpectedTypeFoundTerm(String), +} |
