Conlang/libconlang/src
John 421aab3aa2 interpreter: Break out into a separate crate
My editor's performance was tanking because of macro interpreter::builtins::builtin!

Temporary solution: move the interpreter into a separate crate

If I intended to keep the interpreter around, in the long-term, it might be an idea to make a proc-macro for builtin expansion.
However, the only reason I need the macros is because the interpreter's dynamic typing implementation is so half-baked. After I bang out the new type checker/inference engine, I'll have to rewrite the entire interpreter anyway!
2024-02-29 17:51:38 -06:00
..
ast ast: Add metadata attributes on Items 2024-02-27 23:31:49 -06:00
token conlang: Introduce type-alias/typedef syntax 2024-02-27 20:49:02 -06:00
ast.rs ast: Reduce the number of chained references to 65535 2024-02-27 23:33:20 -06:00
common.rs Cleanup: Break Loc out into a common module, rename WhileParsing => Parsing 2024-01-23 01:51:00 -06:00
lexer.rs lexer: implement std::error:;Error for Error (whoops!) 2024-02-28 05:00:39 -06:00
lib.rs interpreter: Break out into a separate crate 2024-02-29 17:51:38 -06:00
parser.rs parser: Note intent to switch to a Pratt parser 2024-02-27 23:35:41 -06:00
resolver.rs conlang 0.3.0: Total grammar overhaul 2024-01-21 05:32:18 -06:00
tests.rs Lexer tests: import formatting 2024-02-26 15:21:14 -06:00
token.rs Cleanup: Break Loc out into a common module, rename WhileParsing => Parsing 2024-01-23 01:51:00 -06:00