potion icon indicating copy to clipboard operation
potion copied to clipboard

wrong x-1 parsing precedence, whitespace

Open rurban opened this issue 11 years ago • 0 comments

n-1 => (expr (msg ("n" value (-1) nil))
n -1 => (expr (msg ("n" value (-1) nil))
n - 1 => (minus (expr (msg ("n")) expr (value (1)))

but the arithmetic minus should be preferred over the generic call with the given value.

rurban avatar Nov 18 '14 11:11 rurban