coffee-script
coffee-script copied to clipboard
IcedCoffeeScript
When including a .coffee file (which must contain an await-defer) from a different directory and compiling with iced, e.g. ``` PrioList = require('./public/libs/util-priolist').PrioList ``` the following error occurs: ``` filename:...
When including `iced.catchExceptions()`, if a test fails Mocha won't display a summary of test results.
Hello, I am using iced quite a lot ant it is totally awesome. Thanks for the great work. My question could probably already benn discussed, I would be totally satisfied...
I noticed that the changelog on the web page only goes to the end of 2011. That gave me the false impression that IcedCoffeeScript hasn't been getting bug fixes from...
Compiling iced CS to JS includes the problem that a new dependency is added: iced-coffee-script. CS' strength is that you can use the compiled JS out of the box, and...
This gives an “unexpected ,” error message: ``` foo = (autocb) -> return null, 42 ``` Node.js-style async callbacks often accept multiple arguments (error and result, at least), so I...
Well, at first glance the repository name is very misleading. I look for **iced-coffee-script** then find out that it's just **coffee-script** with the branch **iced**.
the defer method ``` coffee (defer_params) -> @count++ (inner_params...) => defer_params?.assign_fn?.apply(null, inner_params) @_fulfill() ``` could be changed to ``` coffee (defer_params) -> @count++ => defer_params?.assign_fn?.apply(null, arguments) @_fulfill() ``` to avoid...
Under windows the paths of file/folder is separated by '\' symbol. But '\u' is a unicode symbol start marker in javascript, so if "\u.." is not a valid unicode symbol...
In while loops, it would be nice we could skip construction of the _results array (and the associated _next function) if the loop results aren't used. This code isn't optimized...