pmatos / nora

An experimental Racket implementation using LLVM/MLIR

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Split writer from dumper

pmatos opened this issue · comments

We need a Writer class that writes Racket values, as opposed to the dumper who is supposed to dump ASTNodes.

An example where these differs is values.

The Writer should write (values 1 2) as

1
2

while the Dumper should dump it as

(values 1 2)

Fixed in fcdbefa.