1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--coffeescript/TODO
2009-12-19 22:55:58 -05:00

23 lines
No EOL
845 B
Text

TODO:
* Finish the examples.
* Write a test suite that checks the JS evaluation.
* Figure out a generic way to transform statements into expressions, and
use it recursively for returns and assigns on whiles, fors, ifs, etc.
* Create the documentation page. (amy, idle)
uv -c . -s coffeescript -t amy --no-lines examples/code.cs > code.html
* Object comprehensions would be easy to add to array comprehensions -- if
we knew that the variable in question is, indeed, an object. Check for
length? Special syntax to tag it?
* Is it possible to close blocks (functions, ifs, trys) without an explicit
block delimiter or significant whitespace?
* Is it possible to pass comments through cleanly and have them show up on
the other end? This includes comments in the middle of array and object
literals, and argument lists.