Jeremy Ashkenas
835db4b279
fixing paths for running
...
coffee compiles CoffeeScript source files into JavaScript.
Usage:
coffee path/to/script.coffee
-i, --interactive run a CoffeeScript REPL (requires Narwhal)
-r, --run compile and run a script (requires Narwhal)
-o, --output [DIR] set the directory for compiled JavaScript
-w, --watch watch scripts for changes, and recompile
-p, --print print the compiled JavaScript to stdout
-l, --lint pipe the compiled JavaScript through JSLint
-e, --eval compile a cli scriptlet or read from stdin
-t, --tokens print the tokens that the lexer produces
-v, --verbose print at every step of code generation
-n, --no-wrap raw output, no safety wrapper or vars
--install-bundle install the CoffeeScript TextMate bundle
--version display CoffeeScript version
-h, --help display this help message outside of the coffee-script directory
2009-12-27 12:43:05 -08:00
Jeremy Ashkenas
542726911a
more underscore and bugfix edits to code generation
2009-12-26 22:24:21 -08:00
Jeremy Ashkenas
575dc7d12e
more underscore, and removing custom_assign and return from conditional compilation
2009-12-26 21:55:56 -08:00
Jeremy Ashkenas
903331f3ff
got negative ranges working with (much, much) uglier compiled code
2009-12-26 20:35:43 -08:00
Jeremy Ashkenas
47b45c4494
removing no_paren -- it was optimizing away order of operations
2009-12-26 11:55:34 -08:00
Jeremy Ashkenas
c4844abb28
adding newline escaping, with tests
2009-12-26 09:29:03 -08:00
Jeremy Ashkenas
60342e8cd9
changed bin/coffee-script to bin/coffee
2009-12-26 08:57:13 -08:00
Jeremy Ashkenas
f9c3d3fc14
fixed range comprehension indexing
2009-12-26 00:27:49 -08:00
Jeremy Ashkenas
b1e25eea88
trading the cs> prompt for the coffee> prompt
2009-12-26 00:18:24 -08:00
Jeremy Ashkenas
1486bbab9f
added array comprehensions over ranges
2009-12-26 00:16:40 -08:00
Jeremy Ashkenas
9adf2e2d30
major internal reworking -- all variable declarations have been pushed up to the first line of the block scope -- all assignment is now an inherent expression
2009-12-25 22:57:33 -08:00
Jeremy Ashkenas
cf46fa8c2c
started raising syntax errors for parens wrapped around expressions (they used to silently be ignored)
2009-12-25 20:36:22 -08:00
Jeremy Ashkenas
16ca3d1608
don't add the no_wrap key to the options hash unless we're going to use it
2009-12-25 19:48:47 -08:00
Jeremy Ashkenas
476a251c80
comment
2009-12-25 19:34:40 -08:00
Jeremy Ashkenas
00659e5f76
reorganizing test fixtures and adding range literals for array slices
2009-12-25 16:20:28 -08:00
Jeremy Ashkenas
03a90928e1
moved the coffeescript extension over from .cs to .coffee -- let's leave C# in peace. Changed array comprehensions to always return their mapped result, even when unassigned
2009-12-25 14:18:05 -08:00
Jeremy Ashkenas
67865d3341
stopped using __proto__, instead, using a variant of goog.inherits for extends and super()
2009-12-25 13:57:47 -08:00
Jeremy Ashkenas
0337513172
ForBody is really the ForSource
2009-12-25 13:40:57 -08:00
Jeremy Ashkenas
1ee2c53391
cleaned up the for grammar and eliminated a shift/reduce conflict
2009-12-25 13:39:33 -08:00
Jeremy Ashkenas
4b7c965101
make equals signs full equals of colons -- you can use them inside of object literals now too
2009-12-25 13:21:17 -08:00
Jeremy Ashkenas
11c394fb7e
allowing = to assign
2009-12-25 07:42:27 -08:00
Jeremy Ashkenas
54a7c405e7
going back to familiar operators +: is just too strange
2009-12-25 07:31:51 -08:00
Jeremy Ashkenas
2393472924
allowing chained function calls, one right after another
2009-12-25 07:08:57 -08:00
Jeremy Ashkenas
3eedd5bb50
better error warnings on the command line
2009-12-25 00:02:27 -08:00
Jeremy Ashkenas
5b7e695f6c
removed bin/cs in favor of a more comprehensive coffee-script command ... now with --interactive and --run
2009-12-24 23:57:27 -08:00
Jeremy Ashkenas
1e3182727b
majorly cleaned up the CoffeeScript that defines the Narwhal integration
2009-12-24 23:28:01 -08:00
Jeremy Ashkenas
e595dbfcee
the narwhal integration written in JavaScript has been replaced with CoffeeScript, and compiler-generated variable names now start with '__'
2009-12-24 23:09:24 -08:00
Jeremy Ashkenas
cca80342aa
making all assignment-y operators use a colon -- now it's +: -: *: /:, and friends
2009-12-24 22:25:29 -08:00
Jeremy Ashkenas
9047c87567
the --no-wrap option now disables top-level var declarations
2009-12-24 17:37:24 -08:00
Jeremy Ashkenas
7a2f5a333f
trading aint for isnt -- let's be serious
2009-12-24 17:21:20 -08:00
Jeremy Ashkenas
66303636dc
allowing quoted strings within object assignment, a in JS and JSON
2009-12-24 17:14:53 -08:00
Jeremy Ashkenas
a71de4b5b6
got extends back in the language -- use it together with super
2009-12-24 16:49:23 -08:00
Jeremy Ashkenas
ada8dfc6d4
fixing super() calls, thanks to tolmasky
2009-12-24 16:23:23 -08:00
Jeremy Ashkenas
4112595368
removing the special-case std-reading in favor of '--eval'
2009-12-24 15:49:42 -08:00
Jeremy Ashkenas
c281db7730
document that -e can read from stdin
2009-12-24 15:35:58 -08:00
Jeremy Ashkenas
5e6b49ad1e
with a working -n --no-wrap option to disable the top-level function safety wrapper
2009-12-24 15:31:00 -08:00
tlrobinson
ad0735f765
Read from stdin if source is "-"
2009-12-24 14:40:39 -08:00
Jeremy Ashkenas
9eeac9b272
added the typeof operater as an OpNode
2009-12-24 11:50:44 -08:00
Jeremy Ashkenas
f859eb6cec
added the instanceof operator to the grammar as an operation node
2009-12-24 11:46:51 -08:00
Jeremy Ashkenas
34486039e1
changing switch/case to switch/when -- it's a better word
2009-12-24 01:33:59 -08:00
Jeremy Ashkenas
9841b78ed8
fixed the broken try/catch grammar
2009-12-24 00:45:16 -08:00
Jeremy Ashkenas
065cfddd0d
with a more comprehensive execution test that uncovered some missing spots
2009-12-24 00:41:12 -08:00
Jeremy Ashkenas
6882a3d36c
added some execution test
2009-12-24 00:12:07 -08:00
Jeremy Ashkenas
b8f563d49e
first draft of docs are done
2009-12-23 23:01:39 -08:00
Jeremy Ashkenas
3b3d57e84a
waypoint
2009-12-24 01:22:41 -05:00
Jeremy Ashkenas
a1ee622aa6
added git st with the new operator regex
2009-12-24 00:37:33 -05:00
Jeremy Ashkenas
7833b11724
added the ! sign as an allowed operator
2009-12-23 21:00:04 -05:00
Jeremy Ashkenas
a7032d0964
...
2009-12-23 20:57:35 -05:00
Jeremy Ashkenas
8d26488748
added yes, no, on and off as boolean aliases and a nice aliases section to the docs
2009-12-23 20:24:55 -05:00
Jeremy Ashkenas
d92ed46503
broken waypoint, but fixed line numbers with the new JS comments
2009-12-23 19:42:44 -05:00