Subject: | Parser can't handle list constructor around string concatenation |
This line of code:
xxx = [ 'foo' _ 'bar' ];
Gives this error:
unexpected token (_)\n [% xxx = [ 'foo' _ 'bar' ]; %],
But this workaround works just fine.
x = 'foo' _ 'bar';
xxx = [ x ];