Remove Blank, support Erroneous

This commit is contained in:
Richard Feldman 2019-08-29 23:54:10 -04:00
parent ded3ba7f54
commit 10631d0dd0
4 changed files with 10 additions and 11 deletions

View file

@ -15,8 +15,6 @@ pub enum Type {
/// Applying a type to some arguments (e.g. Map.Map String Int)
Apply(ModuleName, String, Vec<Type>),
Variable(Variable),
/// A Blank in the editor (a "typed hole" as they're also known)
Blank,
/// A type error, which will code gen to a runtime error
Erroneous(Problem),
}