1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/miniMAL/step3_env.json

80 lines
2.8 KiB
JSON
Raw Normal View History

2015-02-12 08:24:00 +03:00
["do",
["load", ["`", "miniMAL-core.json"]],
["load", ["`", "types.json"]],
["load", ["`", "reader.json"]],
["load", ["`", "printer.json"]],
["load", ["`", "env.json"]],
2015-02-12 08:24:00 +03:00
["def", "READ", ["fn", ["strng"],
["read-str", "strng"]]],
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) .
2022-01-10 02:15:40 +03:00
["def", "LET", ["fn", ["env", "args"],
["if", [">", ["count", "args"], 0],
["do",
["env-set", "env", ["nth", "args", 0],
["EVAL", ["nth", "args", 1], "env"]],
["LET", "env", ["rest", ["rest", "args"]]]]]]],
["def", "EVAL", ["fn", ["ast", "env"],
["do",
["let", ["debug-eval-sym", ["symbol", ["`", "DEBUG-EVAL"]],
"debug-eval-env", ["env-find", "env", "debug-eval-sym"]],
["if", ["not", ["=", "debug-eval-env", null]],
["let", ["debug-eval", ["env-get", "debug-eval-env", "debug-eval-sym"]],
["if", ["not", ["or", ["=", "debug-eval", null],
["=", "debug-eval", false]]],
["println", ["`", "EVAL:"], ["pr-str", "ast", true]]]]]],
2015-02-12 08:24:00 +03:00
["if", ["symbol?", "ast"],
["env-get", "env", "ast"],
["if", ["vector?", "ast"],
["vectorl", ["map", ["fn", ["x"], ["EVAL", "x", "env"]], "ast"]],
["if", ["map?", "ast"],
["let", ["new-hm", ["hash-map"]],
["do",
["map", ["fn", ["k"], ["set", "new-hm",
"k",
["EVAL", ["get", "ast", "k"], "env"]]],
["keys", "ast"]],
"new-hm"]],
2015-02-12 08:24:00 +03:00
["if", ["not", ["list?", "ast"]],
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) .
2022-01-10 02:15:40 +03:00
"ast",
["if", ["empty?", "ast"],
"ast",
["let", ["a0", ["get", ["first", "ast"], ["`", "val"]]],
["if", ["=", ["`", "def!"], "a0"],
["env-set", "env", ["nth", "ast", 1],
["EVAL", ["nth", "ast", 2], "env"]],
["if", ["=", ["`", "let*"], "a0"],
["let", ["let-env", ["env-new", "env"]],
["do",
["LET", "let-env", ["nth", "ast", 1]],
["EVAL", ["nth", "ast", 2], "let-env"]]],
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) .
2022-01-10 02:15:40 +03:00
["let", ["el", ["map", ["fn", ["x"], ["EVAL", "x", "env"]], "ast"],
"f", ["first", "el"],
"args", ["rest", "el"]],
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) .
2022-01-10 02:15:40 +03:00
["apply", "f", "args"]]]]]]]]]]]]],
2015-02-12 08:24:00 +03:00
["def", "PRINT", ["fn", ["exp"],
["pr-str", "exp", true]]],
["def", "repl-env", ["env-new"]],
["env-set", "repl-env", ["symbol", ["`", "+"]], "+"],
["env-set", "repl-env", ["symbol", ["`", "-"]], "-"],
["env-set", "repl-env", ["symbol", ["`", "*"]], "*"],
["def", "div", ["fn", ["a", "b"], ["parseInt", ["/", "a", "b"]]]],
["env-set", "repl-env", ["symbol", ["`", "/"]], "div"],
["def", "rep", ["fn", ["strng"],
["try",
["PRINT", ["EVAL", ["READ", "strng"], "repl-env"]],
["catch", "exc",
["str", ["`", "Error: "], [".", "exc", ["`", "toString"]]]]]]],
["repl", ["`", "user> "], "rep"],
null
]