1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
pub mod util;
pub mod display;
pub mod check;
pub mod subst;
use crate::sexp::SExp;
#[derive(Clone,Debug,PartialEq)]
pub enum Type {
Integer,
Arrow(Box<Type>, Box<Type>),
List(Vec<Type>),
/// Type for generics
/// and also error messages
/// with unknown types
VarType(String),
}
#[derive(Debug,PartialEq)]
pub enum TypeError {
UndefinedVariable(String),
UnboundGeneric(String),
InvalidOperator {
operator: SExp,
expected: Type,
found: Type,
},
InvalidArgList {
arglist: SExp,
expected: Type,
found: Type,
},
OtherError
}
impl Type {
/// Tests if the type has no variable types.
///
/// **Examples**
/// ```rust
/// use melisp::r#type::{*, Type::*, TypeError::*, util::*};
///
/// assert!(Integer.is_concrete());
/// assert!(!VarType("a".to_string()).is_concrete());
///
/// assert!(arr(Integer, Integer).is_concrete());
/// assert!(!arr(VarType("b".to_string()), Integer).is_concrete());
///
/// assert!(
/// List(vec![Integer, Integer, arr(Integer, Integer)]).is_concrete()
/// );
/// assert!(
/// !List(vec![Integer, VarType("a".to_string()), Integer])
/// .is_concrete()
/// );
/// ```
pub fn is_concrete(&self) -> bool {
todo!()
}
}
|