You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When parsing export foo=(bar), the array_assignment_list node has token value bar) instead of either bar or bar). This is also true if the list has multiple element, e.g. export foo=(bar baz) yields an array_assignment_list node with token value bar baz).
The underlying combined_word node(s) have the correct value(s) though, although the parentheses are not contained - I was expecting bash:LP or bash_LT nodes but maybe this is expected behavior ?
The text was updated successfully, but these errors were encountered:
When parsing
export foo=(bar)
, thearray_assignment_list
node has token valuebar)
instead of eitherbar
orbar)
. This is also true if the list has multiple element, e.g.export foo=(bar baz)
yields anarray_assignment_list
node with token valuebar baz)
.The underlying
combined_word
node(s) have the correct value(s) though, although the parentheses are not contained - I was expectingbash:LP
orbash_LT
nodes but maybe this is expected behavior ?The text was updated successfully, but these errors were encountered: