We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
hrm - it's a silly problem because it thinks that the /2 + (/ is a regex. Not sure the best way to fix
Sorry, something went wrong.
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: #38 (comment)
Reply to this email directly or view it on GitHub: #38 (comment)
i think it might well be doing something like that
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: