1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 09:40:21 +03:00
mal/impls/dart/step3_env.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

126 lines
3.6 KiB
Dart

import 'dart:io';
import 'env.dart';
import 'printer.dart' as printer;
import 'reader.dart' as reader;
import 'types.dart';
final Env replEnv = new Env();
void setupEnv() {
replEnv.set('+', new MalBuiltin((List<MalType> args) {
var a = args[0] as MalInt;
var b = args[1] as MalInt;
return new MalInt(a.value + b.value);
}));
replEnv.set('-', new MalBuiltin((List<MalType> args) {
var a = args[0] as MalInt;
var b = args[1] as MalInt;
return new MalInt(a.value - b.value);
}));
replEnv.set('*', new MalBuiltin((List<MalType> args) {
var a = args[0] as MalInt;
var b = args[1] as MalInt;
return new MalInt(a.value * b.value);
}));
replEnv.set('/', new MalBuiltin((List<MalType> args) {
var a = args[0] as MalInt;
var b = args[1] as MalInt;
return new MalInt(a.value ~/ b.value);
}));
}
MalType READ(String x) => reader.read_str(x);
MalType EVAL(MalType ast, Env env) {
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);
}
return EVAL(args[1], newEnv);
}
}
MalBuiltin f = EVAL(list.elements.first, env);
List<MalType> args = list.elements.sublist(1).map((x) => EVAL(x, env)).toList();
return f.call(args);
}
}
String PRINT(MalType x) => printer.pr_str(x);
String rep(String x) {
return PRINT(EVAL(READ(x), replEnv));
}
const prompt = 'user> ';
main() {
setupEnv();
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 reader.NoInputException {
continue;
}
stdout.writeln(output);
}
}