diff options
Diffstat (limited to 'src/lisp/expr.rs')
-rw-r--r-- | src/lisp/expr.rs | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/lisp/expr.rs b/src/lisp/expr.rs index 4676a3e..adacc1c 100644 --- a/src/lisp/expr.rs +++ b/src/lisp/expr.rs | |||
@@ -11,7 +11,7 @@ pub enum LispExpr { | |||
11 | StringLit(String), | 11 | StringLit(String), |
12 | BoolLit(bool), | 12 | BoolLit(bool), |
13 | Ident(String), | 13 | Ident(String), |
14 | PrimitiveFunc(fn(&[LispExpr], Option<&mut AppState>) -> Result<LispExpr, LispError>), | 14 | PrimitiveFunc(PrimitiveFunc), |
15 | Function(LispFunction), | 15 | Function(LispFunction), |
16 | 16 | ||
17 | // none of these depths should be zero | 17 | // none of these depths should be zero |
@@ -21,6 +21,23 @@ pub enum LispExpr { | |||
21 | Quote(Box<LispExpr>, u32), | 21 | Quote(Box<LispExpr>, u32), |
22 | } | 22 | } |
23 | 23 | ||
24 | #[derive(Clone)] | ||
25 | pub struct PrimitiveFunc { | ||
26 | pub arity: Option<usize>, | ||
27 | pub closure: fn(&[LispExpr], &mut AppState) -> Result<LispExpr, LispError>, | ||
28 | } | ||
29 | |||
30 | impl PrimitiveFunc { | ||
31 | pub fn call(&self, args: &[LispExpr], app: &mut AppState) -> Result<LispExpr, LispError> { | ||
32 | if let Some(arity) = self.arity { | ||
33 | if args.len() < arity { | ||
34 | return Err(LispError::EvalError); | ||
35 | } | ||
36 | } | ||
37 | (self.closure)(args, app) | ||
38 | } | ||
39 | } | ||
40 | |||
24 | impl LispExpr { | 41 | impl LispExpr { |
25 | pub fn comma(self, n: u32) -> LispExpr { | 42 | pub fn comma(self, n: u32) -> LispExpr { |
26 | match self { | 43 | match self { |