1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 17:50:24 +03:00
mal/impls/dart/step7_quote.dart
Nicolas Boulenguez 033892777a Merge eval-ast and macro expansion into EVAL, add DEBUG-EVAL
See issue #587.
* Merge eval-ast and eval into a single conditional.
* Expand macros during the apply phase, removing lots of duplicate
  tests, and increasing the overall consistency by allowing the macro
  to be computed instead of referenced by name (`((defmacro! cond
  (...)))` is currently illegal for example).
* Print "EVAL: $ast" at the top of EVAL if DEBUG-EVAL exists in the
  MAL environment.
* Remove macroexpand and quasiquoteexpand special forms.
* Use pattern-matching style in process/step*.txt.

Unresolved issues:
c.2: unable to reproduce with gcc 11.12.0.
elm: the directory is unchanged.
groovy: sometimes fail, but not on each rebuild.
nasm: fails some new soft tests, but the issue is unreproducible when
  running the interpreter manually.
objpascal: unreproducible with fpc 3.2.2.
ocaml: unreproducible with 4.11.1.
perl6: unreproducible with rakudo 2021.09.

Unrelated changes:
Reduce diff betweens steps.
Prevent defmacro! from mutating functions: c forth logo miniMAL vb.
dart: fix recent errors and warnings
ocaml: remove metadata from symbols.

Improve the logo implementation.
Encapsulate all representation in types.lg and env.lg, unwrap numbers.
Replace some manual iterations with logo control structures.
Reduce the diff between steps.
Use native iteration in env_get and env_map
Rewrite the reader with less temporary strings.
Reduce the number of temporary lists (for example, reverse iteration
with butlast requires O(n^2) allocations).
It seems possible to remove a few exceptions: GC settings
(Dockerfile), NO_SELF_HOSTING (IMPLS.yml) and step5_EXCLUDES
(Makefile.impls) .
2024-08-05 11:40:49 -05:00

206 lines
6.1 KiB
Dart

import 'dart:io';
import 'core.dart';
import 'env.dart';
import 'printer.dart' as printer;
import 'reader.dart' as reader;
import 'types.dart';
final Env replEnv = new Env();
void setupEnv(List<String> argv) {
// TODO(het): use replEnv#set once generalized tearoffs are implemented
ns.forEach((sym, fun) => replEnv.set(sym, fun));
replEnv.set('eval',
new MalBuiltin((List<MalType> args) => EVAL(args.single, replEnv)));
replEnv.set('*ARGV*',
new MalList(argv.map((s) => new MalString(s)).toList()));
rep('(def! not (fn* (a) (if a false true)))');
rep("(def! load-file "
"(fn* (f) (eval (read-string (str \"(do \" (slurp f) \"\nnil)\")))))");
}
bool starts_with(MalType ast, String sym) {
return ast is MalList && ast.length == 2 && ast.first == new MalSymbol(sym);
}
MalType qq_loop(List<MalType> xs) {
var acc = new MalList([]);
for (var i=xs.length-1; 0<=i; i-=1) {
if (starts_with(xs[i], "splice-unquote")) {
acc = new MalList([new MalSymbol("concat"), (xs[i] as MalList)[1], acc]);
} else {
acc = new MalList([new MalSymbol("cons"), quasiquote(xs[i]), acc]);
}
}
return acc;
}
MalType quasiquote(MalType ast) {
if (starts_with(ast, "unquote")) {
return (ast as MalList).elements[1];
} else if (ast is MalList) {
return qq_loop(ast.elements);
} else if (ast is MalVector) {
return new MalList([new MalSymbol("vec"), qq_loop(ast.elements)]);
} else if (ast is MalSymbol || ast is MalHashMap) {
return new MalList([new MalSymbol("quote"), ast]);
} else {
return ast;
}
}
MalType READ(String x) => reader.read_str(x);
MalType EVAL(MalType ast, Env env) {
while (true) {
var dbgeval = env.get("DEBUG-EVAL");
if (dbgeval != null && !(dbgeval is MalNil)
&& !(dbgeval is MalBool && dbgeval.value == false)) {
stdout.writeln("EVAL: ${printer.pr_str(ast)}");
}
if (ast is MalSymbol) {
var result = env.get(ast.value);
if (result == null) {
throw new NotFoundException(ast.value);
}
return result;
} else if (ast is MalList) {
// Exit this switch.
} else if (ast is MalVector) {
return new MalVector(ast.elements.map((x) => EVAL(x, env)).toList());
} else if (ast is MalHashMap) {
var newMap = new Map<MalType, MalType>.from(ast.value);
for (var key in newMap.keys) {
newMap[key] = EVAL(newMap[key], env);
}
return new MalHashMap(newMap);
} else {
return ast;
}
// ast is a list. todo: indent left.
if ((ast as MalList).elements.isEmpty) {
return ast;
} else {
var list = ast as MalList;
if (list.elements.first is MalSymbol) {
var symbol = list.elements.first as MalSymbol;
var args = list.elements.sublist(1);
if (symbol.value == "def!") {
MalSymbol key = args.first;
MalType value = EVAL(args[1], env);
env.set(key.value, value);
return value;
} else if (symbol.value == "let*") {
// TODO(het): If elements.length is not even, give helpful error
Iterable<List<MalType>> pairs(List<MalType> elements) sync* {
for (var i = 0; i < elements.length; i += 2) {
yield [elements[i], elements[i + 1]];
}
}
var newEnv = new Env(env);
MalIterable bindings = args.first;
for (var pair in pairs(bindings.elements)) {
MalSymbol key = pair[0];
MalType value = EVAL(pair[1], newEnv);
newEnv.set(key.value, value);
}
ast = args[1];
env = newEnv;
continue;
} else if (symbol.value == "do") {
for (var elt in args.sublist(0, args.length - 1)) {
EVAL(elt, env);
}
ast = args.last;
continue;
} else if (symbol.value == "if") {
var condition = EVAL(args[0], env);
if (condition is MalNil ||
condition is MalBool && condition.value == false) {
// False side of branch
if (args.length < 3) {
return new MalNil();
}
ast = args[2];
continue;
} else {
// True side of branch
ast = args[1];
continue;
}
} else if (symbol.value == "fn*") {
var params = (args[0] as MalIterable)
.elements
.map((e) => e as MalSymbol)
.toList();
return new MalClosure(
params,
args[1],
env,
(List<MalType> funcArgs) =>
EVAL(args[1], new Env(env, params, funcArgs)));
} else if (symbol.value == "quote") {
return args.single;
} else if (symbol.value == "quasiquote") {
ast = quasiquote(args.first);
continue;
}
}
var f = EVAL(list.elements.first, env);
var args = list.elements.sublist(1).map((x) => EVAL(x, env)).toList();
if (f is MalBuiltin) {
return f.call(args);
} else if (f is MalClosure) {
ast = f.ast;
env = new Env(f.env, f.params, args);
continue;
} else {
throw 'bad!';
}
}
}
}
String PRINT(MalType x) => printer.pr_str(x);
String rep(String x) {
return PRINT(EVAL(READ(x), replEnv));
}
const prompt = 'user> ';
main(List<String> args) {
setupEnv(args.isEmpty ? const <String>[] : args.sublist(1));
if (args.isNotEmpty) {
rep("(load-file \"${args.first}\")");
return;
}
while (true) {
stdout.write(prompt);
var input = stdin.readLineSync();
if (input == null) return;
var output;
try {
output = rep(input);
} on reader.ParseException catch (e) {
stdout.writeln("Error: '${e.message}'");
continue;
} on NotFoundException catch (e) {
stdout.writeln("Error: '${e.value}' not found");
continue;
} on MalException catch (e) {
stdout.writeln("Error: ${printer.pr_str(e.value)}");
continue;
} on reader.NoInputException {
continue;
}
stdout.writeln(output);
}
}