Subject: | concatenation(_) in method call (non-assignment) should be legal syntaxt |
concatenation in method call (non-assignment) results in error
This is legal
[%
foo = bar _ baz _ "brb" _ "$blog,$flog,$jog" _ asdf;
%]
but this is not
[%
CALL foo.blongo( bar _ baz _ "brb" _ "$blog,$flog,$jog" _ asdf );
%]
and it's only logical that it should be.
Thanks