summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2021-06-23Improve syntax definitionLaurenz
- Allow both from and using for now - Remove exclamation mark support - Support with expressions to apply arguments to a function
2021-06-09Tidy upLaurenz
2021-06-09Introduce `fr`sMartin Haug
2021-06-09Remove template pretty printingLaurenz
Was buggy and pretty useless anyway since it couldn't peek into function templates.
2021-06-07Switch back to hashtags for headingsLaurenz
2021-05-31Parse import and include expressionsMartin Haug
Co-Authored-By: Laurenz <laurmaedje@gmail.com>
2021-03-29Side by side testing 👣Martin Haug
2021-03-17Fixes in TextMate grammar ✅Laurenz
2021-03-04Fix whitespace ✔Laurenz
2021-03-03Closures and function definitions 🚀Laurenz
Supports: - Closure syntax: `(x, y) => z` - Shorthand for a single argument: `x => y` - Function syntax: `let f(x) = y` - Capturing of variables from the environment - Error messages for too few / many passed arguments Does not support: - Named arguments - Variadic arguments with `..`
2021-03-02Replace default fonts 🆕Laurenz
2021-03-02Fix highlighting of arguments in code 🎨Laurenz
2021-02-25Replace command icons 🛠Laurenz
2021-02-24While loops 🔁Laurenz
2021-02-24Tune test extension 🛠Laurenz
- Separate refresh button which does not rerun the test - Shows stdout and stderr of commands in the preview
2021-02-23VS Code language support extension 🛠Laurenz
2021-02-20VS Code extension for easier testing 🛠Laurenz
This extension enables you to - quickly open the actual and reference output for a test case to the side - re-run the test with the click of a button - approve the test output (moves output to reference folder and optimizes with oxipng)