yoavnir / specs2016

New version of the specs pipeline stage based on what's in current CMS pipelines
MIT License
1 stars 1 forks source link

Allow unquoted complex conditions, at least in file specs #203

Closed yoavnir closed 1 year ago

yoavnir commented 1 year ago

This condition doesn't compile, not even in a specs file:

if a=='-' & length(b)%2==0 then

You get the message: Missing THEN after IF at index 6 with condition "a=='-'"

Would be better to make the parser smarter, perhaps by attempting to gather all the tokens until the THEN in the condition?