coffee-script icon indicating copy to clipboard operation
coffee-script copied to clipboard

IcedCoffeeScript

Results 84 coffee-script issues
Sort by recently updated
recently updated
newest added

It would be very nice if it would be possible to add an `#include` to an iced coffee, like in `C` or here: https://www.npmjs.com/package/coffee-stir

In the compiled code below shouldn't the catch block do something with __iced_k like the try block does? So that `console.log 'done'` gets called if there's an exception while running...

Destructuring assignment example from http://coffeescript.org/ is not compatible with version 108.0.11. ``` coffeescript class Person constructor: (options) -> {@name, @age, @height = 'average'} = options ```

Future versions of JavaScript will be providing the await/async keywords to simplify asynchronous coding. http://code.tutsplus.com/tutorials/a-primer-on-es7-async-functions--cms-22367 So eventually await/async will be part of coffeescript. Unfortunately all the programs we've written in...

MISSING ", STARTING workaround "#{a/ b}/"

The tool should be written in `iced`, meaning we assume that we currently have a global working version of `iced`, which isn't too bad an assumption. There should be one...

``` code ICED warning: Entered dead await at Mailer._render (undefined:263) ```

iced3

``` { interval mod = 0 } = opt ``` coffeescript 1.10.0 ``` var interval, mod, ref; interval = opt.interval, mod = (ref = opt.mod) != null ? ref :...

Just "/=/" this string ``` iced> /=/ [stdin]:1:1: error: unexpected /= /=/ ^^ ``` coffeescript.org parses fine iced3 is ok. I think this case needs a test.

``` iced> "#{1/2}/" [stdin]:1:1: error: missing ", starting "#{a/2}/" ^ coffee> "#{1/2}/" '0.5/' ``` Other 'fun' stuff ``` """ #{a/2}/ """ MISSING }, STARTING "#{1/2});/}" UNMATCHED } ```