join points with arguments

This commit is contained in:
Folkert 2020-08-05 22:33:07 +02:00
parent b22fa7c9cd
commit c18bbe9a63
6 changed files with 394 additions and 332 deletions

View file

@ -123,6 +123,8 @@ pub enum RuntimeError {
InvalidInt(IntErrorKind, Base, Region, Box<str>),
CircularDef(Vec<Symbol>, Vec<(Region /* pattern */, Region /* expr */)>),
NonExhaustivePattern,
/// When the author specifies a type annotation but no implementation
NoImplementation,
}