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
Combining the prototype shortcut and the existential operator seems like fairly unambiguous code, but CoffeeScript complains UNEXPECTED '::':
UNEXPECTED '::'
Foo?::foobar Foo.bar?::foobar
From these I would expect the same compiled code as from
Foo?.prototype.foobar Foo.bar?.prototype.foobar
The text was updated successfully, but these errors were encountered:
Fixed in CoffeeScriptRedux:
$ bin/coffee -bj --cli 'b = a?::b' // Generated by CoffeeScript 2.0.0 var b; b = 'undefined' !== typeof a && null != a ? a.prototype.b : void 0;
Sorry, something went wrong.
How is 2.0 coming along?
@mark-hahn: Pretty well. Try it out: https://github.com/michaelficarra/CoffeeScriptRedux
Check out the wiki for roadmap/progress.
b3452c1
No branches or pull requests
Combining the prototype shortcut and the existential operator seems like fairly unambiguous code, but CoffeeScript complains
UNEXPECTED '::'
:From these I would expect the same compiled code as from
The text was updated successfully, but these errors were encountered: