tests: make throw of non-strings optional/soft.
[jackhill/mal.git] / io / step9_try.io
CommitLineData
a7353735
DM
1MalTypes
2MalReader
3
4READ := method(str, MalReader read_str(str))
5
6isPair := method(obj,
7 obj ?isSequential and(obj isEmpty not)
8)
9
10quasiquote := method(ast,
11 if(isPair(ast) not, return(MalList with(list(MalSymbol with("quote"), ast))))
12 a0 := ast at(0)
13 if(a0 == MalSymbol with("unquote"), return(ast at(1)))
14 if(isPair(a0) and (a0 at(0) == MalSymbol with("splice-unquote")),
15 return(MalList with(list(MalSymbol with("concat"), a0 at(1), quasiquote(ast rest)))),
16 return(MalList with(list(MalSymbol with("cons"), quasiquote(a0), quasiquote(ast rest)))))
17)
18
19isMacroCall := method(ast, env,
9f78a1b9
DM
20 if(ast type != "MalList", return false)
21 a0 := ast first
22 if(a0 type != "MalSymbol", return false)
23 if(env find(a0) isNil, return false)
24 f := env get(a0)
25 (f type == "MalFunc") and (f isMacro)
a7353735
DM
26)
27
28macroexpand := method(ast, env,
29 while(isMacroCall(ast, env),
30 macro := env get(ast at(0))
31 ast = macro blk call(ast rest)
32 )
33 ast
34)
35
36eval_ast := method(ast, env,
37 (ast type) switch(
38 "MalSymbol", env get(ast),
39 "MalList", MalList with(ast map(a, EVAL(a, env))),
40 "MalVector", MalVector with(ast map(a, EVAL(a, env))),
41 "MalMap",
42 m := MalMap clone
43 ast foreach(k, v,
44 keyObj := MalMap keyToObj(k)
45 m atPut(MalMap objToKey(EVAL(keyObj, env)), EVAL(v, env))
46 )
47 m,
48 ast
49 )
50)
51
52EVAL := method(ast, env,
53 loop(
54 if(ast type != "MalList", return(eval_ast(ast, env)))
55
56 ast = macroexpand(ast, env)
57 if(ast type != "MalList", return(eval_ast(ast, env)))
9c7a452e 58 if(ast isEmpty, return ast)
a7353735
DM
59
60 if(ast at(0) type == "MalSymbol",
61 ast at(0) val switch(
62 "def!",
63 return(env set(ast at(1), EVAL(ast at(2), env))),
64 "do",
65 eval_ast(ast slice(1,-1), env)
66 ast = ast last
67 continue, // TCO
68 "if",
69 ast = if(EVAL(ast at(1), env), ast at(2), ast at(3))
70 continue, // TCO
71 "fn*",
72 return(MalFunc with(ast at(2), ast at(1), env, block(a, EVAL(ast at(2), Env with(env, ast at(1), a))))),
73 "let*",
74 letEnv := Env with(env)
75 varName := nil
76 ast at(1) foreach(i, e,
77 if(i % 2 == 0,
78 varName := e,
79 letEnv set(varName, EVAL(e, letEnv))
80 )
81 )
82 ast = ast at(2)
83 env = letEnv
84 continue, // TCO
85 "quote",
86 return(ast at(1)),
87 "quasiquote",
88 ast = quasiquote(ast at(1))
89 continue, // TCO
90 "defmacro!",
91 return(env set(ast at(1), EVAL(ast at(2), env) setIsMacro(true))),
92 "macroexpand",
93 return(macroexpand(ast at(1), env)),
94 "try*",
95 e := try(result := EVAL(ast at(1), env))
96 e catch(Exception,
9f78a1b9 97 exc := if(e type == "MalException", e val, e error)
a7353735
DM
98 catchAst := ast at(2)
99 catchEnv := Env with(env)
100 catchEnv set(catchAst at(1), exc)
101 result := EVAL(catchAst at(2), catchEnv)
102 )
103 return(result)
104 )
105 )
106
107 // Apply
108 el := eval_ast(ast, env)
109 f := el at(0)
110 args := el rest
111 f type switch(
112 "Block",
113 return(f call(args)),
114 "MalFunc",
115 ast = f ast
116 env = Env with(f env, f params, args)
117 continue, // TCO
118 Exception raise("Unknown function type")
119 )
120 )
121)
122
123PRINT := method(exp, exp malPrint(true))
124
125repl_env := Env with(nil)
126
127RE := method(str, EVAL(READ(str), repl_env))
128
129REP := method(str, PRINT(RE(str)))
130
131MalCore NS foreach(k, v, repl_env set(MalSymbol with(k), v))
132repl_env set(MalSymbol with("eval"), block(a, EVAL(a at(0), repl_env)))
133repl_env set(MalSymbol with("*ARGV*"), MalList with(System args slice(2)))
134
135// core.mal: defined using the language itself
136RE("(def! not (fn* (a) (if a false true)))")
137RE("(def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \")\")))))")
138RE("(defmacro! cond (fn* (& xs) (if (> (count xs) 0) (list 'if (first xs) (if (> (count xs) 1) (nth xs 1) (throw \"odd number of forms to cond\")) (cons 'cond (rest (rest xs)))))))")
139RE("(defmacro! or (fn* (& xs) (if (empty? xs) nil (if (= 1 (count xs)) (first xs) `(let* (or_FIXME ~(first xs)) (if or_FIXME or_FIXME (or ~@(rest xs))))))))")
140
141if(System args size > 1,
142 REP("(load-file \"" .. (System args at(1)) .. "\")")
143 System exit(0)
144)
145
146loop(
147 line := MalReadline readLine("user> ")
148 if(line isNil, break)
149 if(line isEmpty, continue)
150 e := try(REP(line) println)
151 e catch(Exception,
152 ("Error: " .. (e error)) println
153 )
154)