tokay-lang / tokay

Tokay is a programming language designed for ad-hoc parsing, inspired by awk.
https://tokay.dev
MIT License
236 stars 7 forks source link

Requirement for inlined parselets #120

Open phorward opened 9 months ago

phorward commented 9 months ago

105 establishes generic parselets and already integrates the feature very close into the language.

Due the removal of the ImlOp::Repeat-construct, Tokay became much slower than before, as more iterations and contexts are created during parsing than before. This reveals the need for parselets being compiled inline. At least, the result should become similar to the code generated by the ImlOp::Repeat-construct before, but as a feature of the Tokay language itself, applicable to any parselet.

This issue currently is only a reminder, but requires action soon.