summaryrefslogtreecommitdiff
path: root/tests/examplefiles/savi/example.savi
Commit message (Collapse)AuthorAgeFilesLines
* Add string interpolation to the Savi lexer.Joe Eli McIlvain2022-04-041-0/+3
| | | | | | Now the Savi lexer can tokenize string interpolation inside strings, which is a new feature added to Savi since the last time this lexer was updated.
* Fix Savi highlighting for underscore/private identifiers.Joe Eli McIlvain2022-04-041-2/+2
| | | | | | | Prior to this change, every underscore/private identifier in Savi code was being highlighted as if it were a class name. After this change, only those whose first letter is uppercase will be highlighted as such, which is the correct behavior.
* Update Savi language example.Joe Eli McIlvain2022-04-041-8/+6
| | | | | The previous example shows the old usage of the testing framework. Now the example reflects the current usage/API of that framework.
* Add lexer for the Savi language. (#1863)Joe Eli McIlvain2021-11-211-0/+28
* Add lexer for the Savi language. * Updates based on review comments. * Prefer Text.Whitespace token over Text token for whitespace. * Updates to Savi lexer based on changes to Rouge Savi lexer. * Add versionadded identifier to Savi lexer.