aboutsummaryrefslogtreecommitdiff
path: root/tests/expansion
AgeCommit message (Collapse)AuthorFilesLines
2020-05-27Add support for value subscript after expansionsBoris Kolpackov2-1/+98
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-02-07Drop copyright notice from source codeKaren Arutyunov3-3/+0
2019-01-16Update copyright yearKaren Arutyunov3-3/+3
2018-09-04Rename .test/test{} to .testscript/testscript{}Boris Kolpackov3-5/+5
2018-08-09Fix test failures on WindowsBoris Kolpackov1-2/+2
2018-08-09Handle few corner cases in concatenated expansionBoris Kolpackov1-0/+28
2018-05-19Update copyright yearKaren Arutyunov2-2/+2
2017-07-12Make use of wildcards in buildfilesKaren Arutyunov1-1/+1
2017-01-05Update copyright yearBoris Kolpackov2-2/+2
2016-12-16Convert tests/ to subproject, initial work on cross-testing supportBoris Kolpackov1-1/+1
2016-12-01Organize tests/, factor common testscript fragmentsBoris Kolpackov3-15/+2
2016-12-01Allow implicit (lexical) typed-to-typed conversionBoris Kolpackov1-6/+3
2016-11-25Implement literal here-document supportBoris Kolpackov1-8/+8
2016-11-23Implement value type propagation on expansionBoris Kolpackov3-0/+71
Currently, we only propagate types of sole, unquoted expansions (variable, function call, or eval context), similar to NULL. To untypify the value, simply quote it.