diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-25 12:12:13 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-05-27 15:52:53 +0200 |
commit | de3de2d1a58556cff5d8549e9befe2ec3cf2d08a (patch) | |
tree | 8f7f109c70d615bc93daa2a8f4b25ceb3842e062 /tests/expansion/concat.testscript | |
parent | b808c255b6a9ddba085bf5646e7d20ec344f2e2d (diff) |
Add support for value subscript after expansions
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])
Diffstat (limited to 'tests/expansion/concat.testscript')
-rw-r--r-- | tests/expansion/concat.testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/expansion/concat.testscript b/tests/expansion/concat.testscript index 181a738..bec48ce 100644 --- a/tests/expansion/concat.testscript +++ b/tests/expansion/concat.testscript @@ -1,4 +1,4 @@ -# file : tests/expansion/type.testscript +# file : tests/expansion/concat.testscript # license : MIT; see accompanying LICENSE file # Test concatenated expansion. |