specs-feup / lara-framework

Tools and APIs to develop weavers for the LARA language (LARA Compiler, LARA Interpreter, Weaver Generator, etc...)
Apache License 2.0
13 stars 2 forks source link

[LARAI] Fix text editor folding in Main lara file #4

Closed fabiodrg closed 3 years ago

fabiodrg commented 3 years ago

Closes #3

Besides fixing the folds in the main Lara file, I also made a small tweak to reparse the folds whenever the document changes. I am a bit concerned this might result in a performance penalty for large documents because parsing the folds iterates over each line and every single token. Repeating that on each keystroke could be bad... I thought of a few alternatives:

Although the second option seems more elegant, maybe would be slightly more complicated (not much experience with events and timers in Java..). Is it really worth it?!