Error with double parentheses
With v. 0.15 and also the live web demo: (1/2 + (1/2)) yields: Error: TypeError: Cannot set property 'matching' of undefined
(1/2 + 1/2) works fine. I assume the extra parentheses should still be valid.
hrm - it's a silly problem because it thinks that the /2 + (/ is a regex. Not sure the best way to fix
seems it's a slight problem in Coffee script too, the following doesn't compile :
(a /2 + (a/ 2))
I see, so maybe CS is "cheating" by assume [0-9]+/[0-9]+ (no space) is divide.
On Mon, Jul 25, 2011 at 10:00 AM, weepy < [email protected]>wrote:
seems it's a slight problem in Coffee script too, the following doesn't compile :
(a /2 + (a/ 2))
Reply to this email directly or view it on GitHub: https://github.com/weepy/kaffeine/issues/38#issuecomment-1644367
i think it might well be doing something like that