Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-10-18 | Fix unexpected 'unterminated double-quoted sequence' script error | Karen Arutyunov | 1 | -11/+8 | |
2022-10-13 | Add support for 'for' loop second (... | for x) and third (for x <...) forms ↵ | Karen Arutyunov | 1 | -8/+20 | |
in script | |||||
2021-05-28 | Recognize quoting of first character in token | Boris Kolpackov | 1 | -3/+2 | |
Use this to relax the pattern inclusion/exclusion syntax to only require unquoted +/-. | |||||
2020-06-10 | Handle special variable names in base lexer via mode data | Boris Kolpackov | 1 | -26/+20 | |
2020-05-27 | Add support for value subscript after expansions | Boris Kolpackov | 1 | -8/+7 | |
Value subscript is only recognized in evaluation contexts (due to ambiguity with wildcard patterns; consider: $x[123].txt) and should be unseparated from the previous token. For example: x = ($y[1]) x = (($f ? $y : $z)[1]) x = ($identity($y)[$z]) | |||||
2020-05-27 | Initial support for ad hoc recipes (still work in progress) | Boris Kolpackov | 1 | -221/+30 | |
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 1 | -1/+0 | |
2019-11-15 | Generalize attributes to be comma-separated with arbitrary values | Boris Kolpackov | 1 | -1/+1 | |
Before: x = [string null] After: x = [string, null] | |||||
2019-11-14 | Tighten up attribute recognition during parsing | Boris Kolpackov | 1 | -22/+26 | |
Now it should be possible to use `[]` for wildcard patterns, for example: foo = foo.[hit]xx Note that a leading bracket expression will still be recognized as attributes and escaping or quoting it will inhibit pattern matching. To resolve this case we need to specify an empty attribute list: foo = [] [abc]-foo.cxx | |||||
2019-07-05 | Move config, dist, test, and install modules into library | Karen Arutyunov | 1 | -0/+551 | |