1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/es6/stepA_mal.mjs
Joel Martin dd7a4f55f3 Test uncaught throw, catchless try* . Fix 46 impls.
Fixes made to: ada, c, chuck, clojure, coffee, common-lisp, cpp,
crystal, d, dart, elm, erlang, es6, factor, fsharp, gnu-smalltalk,
groovy, guile, haxe, hy, js, livescript, matlab, miniMAL, nasm, nim,
objc, objpascal, ocaml, perl, perl6, php, plsql, ps, python, r,
rpython, ruby, scheme, swift3, tcl, ts, vb, vimscript, wasm, yorick.

Catchless try* test is an optional test. Not all implementations
support catchless try* but a number were fixed so they at least don't
crash on catchless try*.
2018-12-12 14:18:26 -06:00

165 lines
5.3 KiB
JavaScript

import rl from './node_readline.js'
const readline = rl.readline
import { _list_Q, _malfunc, _malfunc_Q } from './types'
import { BlankException, read_str } from './reader'
import { pr_str } from './printer'
import { new_env, env_set, env_get } from './env'
import { core_ns } from './core'
// read
const READ = str => read_str(str)
// eval
const is_pair = x => Array.isArray(x) && x.length > 0
const quasiquote = ast => {
if (!is_pair(ast)) {
return [Symbol.for('quote'), ast]
} else if (ast[0] === Symbol.for('unquote')) {
return ast[1]
} else if (is_pair(ast[0]) && ast[0][0] === Symbol.for('splice-unquote')) {
return [Symbol.for('concat'),
ast[0][1],
quasiquote(ast.slice(1))]
} else {
return [Symbol.for('cons'),
quasiquote(ast[0]),
quasiquote(ast.slice(1))]
}
}
function macroexpand(ast, env) {
while (_list_Q(ast) && typeof ast[0] === 'symbol' && ast[0] in env) {
let f = env_get(env, ast[0])
if (!f.ismacro) { break }
ast = f(...ast.slice(1))
}
return ast
}
const eval_ast = (ast, env) => {
if (typeof ast === 'symbol') {
return env_get(env, ast)
} else if (ast instanceof Array) {
return ast.map(x => EVAL(x, env))
} else if (ast instanceof Map) {
let new_hm = new Map()
ast.forEach((v, k) => new_hm.set(EVAL(k, env), EVAL(v, env)))
return new_hm
} else {
return ast
}
}
const EVAL = (ast, env) => {
while (true) {
//console.log('EVAL:', pr_str(ast, true))
if (!_list_Q(ast)) { return eval_ast(ast, env) }
ast = macroexpand(ast, env)
if (!_list_Q(ast)) { return eval_ast(ast, env) }
if (ast.length === 0) { return ast }
const [a0, a1, a2, a3] = ast
switch (typeof a0 === 'symbol' ? Symbol.keyFor(a0) : Symbol(':default')) {
case 'def!':
return env_set(env, a1, EVAL(a2, env))
case 'let*':
let let_env = new_env(env)
for (let i=0; i < a1.length; i+=2) {
env_set(let_env, a1[i], EVAL(a1[i+1], let_env))
}
env = let_env
ast = a2
break // continue TCO loop
case 'quote':
return a1
case 'quasiquote':
ast = quasiquote(a1)
break // continue TCO loop
case 'defmacro!':
let func = EVAL(a2, env)
func.ismacro = true
return env_set(env, a1, func)
case 'macroexpand':
return macroexpand(a1, env)
case 'try*':
try {
return EVAL(a1, env)
} catch (exc) {
if (a2 && a2[0] === Symbol.for('catch*')) {
if (exc instanceof Error) { exc = exc.message }
return EVAL(a2[2], new_env(env, [a2[1]], [exc]))
} else {
throw exc
}
}
case 'do':
eval_ast(ast.slice(1,-1), env)
ast = ast[ast.length-1]
break // continue TCO loop
case 'if':
let cond = EVAL(a1, env)
if (cond === null || cond === false) {
ast = (typeof a3 !== 'undefined') ? a3 : null
} else {
ast = a2
}
break // continue TCO loop
case 'fn*':
return _malfunc((...args) => EVAL(a2, new_env(env, a1, args)),
a2, env, a1)
default:
let [f, ...args] = eval_ast(ast, env)
if (_malfunc_Q(f)) {
env = new_env(f.env, f.params, args)
ast = f.ast
break // continue TCO loop
} else {
return f(...args)
}
}
}
}
// print
const PRINT = exp => pr_str(exp, true)
// repl
let repl_env = new_env()
const REP = str => PRINT(EVAL(READ(str), repl_env))
// core.EXT: defined using ES6
for (let [k, v] of core_ns) { env_set(repl_env, Symbol.for(k), v) }
env_set(repl_env, Symbol.for('eval'), a => EVAL(a, repl_env))
env_set(repl_env, Symbol.for('*ARGV*'), [])
// core.mal: defined using language itself
REP('(def! *host-language* "ecmascript6")')
REP('(def! not (fn* (a) (if a false true)))')
REP('(def! load-file (fn* (f) (eval (read-string (str "(do " (slurp f) ")")))))')
REP('(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)))))))')
REP('(def! *gensym-counter* (atom 0))')
REP('(def! gensym (fn* [] (symbol (str \"G__\" (swap! *gensym-counter* (fn* [x] (+ 1 x)))))))')
REP('(defmacro! or (fn* (& xs) (if (empty? xs) nil (if (= 1 (count xs)) (first xs) (let* (condvar (gensym)) `(let* (~condvar ~(first xs)) (if ~condvar ~condvar (or ~@(rest xs)))))))))')
if (process.argv.length > 2) {
env_set(repl_env, Symbol.for('*ARGV*'), process.argv.slice(3))
REP(`(load-file "${process.argv[2]}")`)
process.exit(0)
}
REP('(println (str "Mal [" *host-language* "]"))')
while (true) {
let line = readline('user> ')
if (line == null) break
try {
if (line) { console.log(REP(line)) }
} catch (exc) {
if (exc instanceof BlankException) { continue }
if (exc instanceof Error) { console.warn(exc.stack) }
else { console.warn(`Error: ${pr_str(exc, true)}`) }
}
}