Miksilo icon indicating copy to clipboard operation
Miksilo copied to clipboard

The fastest way to build a language

Results 35 Miksilo issues
Sort by recently updated
recently updated
newest added

Add incremental parsing, which allows for fast re-parsing on partial textual changes. This is required for IDE support. See [this paper](https://ohmlang.github.io/pubs/sle2017/incremental-packrat-parsing.pdf) for more details.

enhancement
grammar

Enable dynamic method resolution for Node objects. Possibly this can even find singleton `NodeField` objects, by storing those in a registry that allows string based lookup. If that's not possible,...

Add the Jasmin language as an example. Jasmin is a simplified bytecode language, defined here: https://en.wikipedia.org/wiki/Jasmin_(software) It serves as a great intermediate language for Java compilation.

enhancement