2009-12-16 22:42:53 -05:00
|
|
|
TODO:
|
|
|
|
|
2009-12-18 06:59:06 -05:00
|
|
|
* Finish the examples.
|
2009-12-17 20:59:19 -05:00
|
|
|
|
2009-12-18 22:30:09 -05:00
|
|
|
* 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.
|
|
|
|
|
2009-12-18 08:36:20 -05:00
|
|
|
* Create the documentation page. (amy, idle)
|
|
|
|
uv -c . -s coffeescript -t amy --no-lines examples/code.cs > code.html
|
2009-12-19 22:55:58 -05:00
|
|
|
|
|
|
|
* 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?
|
2009-12-17 22:22:35 -05:00
|
|
|
|
2009-12-14 23:03:51 -05:00
|
|
|
* 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
|
2009-12-16 22:42:53 -05:00
|
|
|
literals, and argument lists.
|
|
|
|
|