parser: Change list syntax
vitorarins opened this issue · 1 comments
vitorarins commented
list syntax should be like this: ["a", "b", "c"]
. And unquoted strings will not work inside lists anymore.
So:
- instead of parenthesis (
(
) we will use brackets([
) - instead of spaces(
,
) - unquoted strings will not be accepted. Ex.:
[ a, b, c ]
will fail.
i4ki commented
I think we need a nashfix for that. Because it has a big impact on existing code base.