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

root@stor:/# nvm use 15 Now using node v15.11.0 (npm v7.6.0) root@stor:/# iced iced> /root/.nvm/versions/node/v15.11.0/lib/node_modules/iced-coffee-script/lib/coffee-script/repl.js:81 nodeLineListener = rli.listeners('line')[0]; ^ [TypeError: Cannot read property 'listeners' of undefined at addMultilineHandler (/root/.nvm/versions/node/v15.11.0/lib/node_modules/iced-coffee-script/lib/coffee-script/repl.js:81:28) at Object.start...

npm i -g iced-coffee-script-3 \ create file #!/usr/bin/env iced3 console.log "here" await setTimeout defer(), 10 console.log "there" launch file expected here there real Error: Cannot find module 'iced-runtime-3'

#!/usr/bin/env iced console.log "HERE" for i in [0 ... 10] console.log "ok", i await setTimeout defer(), 10 # comment this line and all fixed try a = 1 console.log "OK"...

This seems to work with single files but I have not tested yet with bigger projects, or with projects that would register multiple compilers which all would use `source-map-support` for...

This turned out to be an evening project to make the tests pass again on latest node and npm. PR fixes compilation error during `await foo defer err result`, which...

``` michal@miso ~/iced_work » cat -n at_name.iced 1 class Test 2 constructor : (@s) -> 3 console.log "s is ", s 4 console.log "@s is ", @s 5 console.log "@...

When using the repl in iced-cs, just enter the following: five -> 5 A warning: DeprecationWarning: Calling an asynchronous function without callback is deprecated. After tracing back the source code,...

While investigating, I found out that I had the same problem with standard coffee-script too: jashkenas/coffeescript#4379

Hello there, a little question. Since version 1.11 CoffeeScript supports ES2015 import and export syntax by producing an import or export statement in the resulting output. We have to add...

What would be needed? What is still missing? I link `iced3` as `iced` and do all my iced-coffee-script using the new branch and have not encountered any issues so far....