aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/build/script/lexer.cxx
AgeCommit message (Collapse)AuthorFilesLines
2022-10-18Fix unexpected 'unterminated double-quoted sequence' script errorKaren Arutyunov1-10/+7
2022-10-13Add support for 'for' loop second (... | for x) and third (for x <...) forms ↵Karen Arutyunov1-3/+28
in script
2020-06-10Handle special variable names in base lexer via mode dataBoris Kolpackov1-30/+9
2020-05-27Add support for value subscript after expansionsBoris Kolpackov1-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-27Initial support for ad hoc recipes (still work in progress)Boris Kolpackov1-0/+270