Jeremy Ashkenas
8fe6fa1cd7
CoffeeScript 0.1.6 -- bugfixes
0.1.6
2009-12-27 12:49:11 -08:00
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
f89c864911
more underscore examples
2009-12-27 11:01:19 -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
ff0062b088
coffeescript 0.1.5, just for kicks
0.1.5
2009-12-26 21:25:37 -08:00
Jeremy Ashkenas
78589f5db1
docs for range comprehensiosn
2009-12-26 20:46:31 -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
96ae6d80f3
docs
2009-12-26 09:05:57 -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
59d912cc26
docs for assignment-as-expression
2009-12-25 23:17:34 -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
274152aff7
documenting ranges and slices
2009-12-25 16:35:57 -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
88fe4f6fd1
CoffeeScript 0.1.4
0.1.4
2009-12-25 14:43:24 -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
781f3b5fa4
added a test to make sure that chained calls work
2009-12-25 07:16:59 -08:00
Jeremy Ashkenas
2393472924
allowing chained function calls, one right after another
2009-12-25 07:08:57 -08:00
Jeremy Ashkenas
859ab7583f
bumping to 0.1.3 ... here we go
0.1.3
2009-12-25 00:16:56 -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
12b830893d
sped up the execution test a good deal by running it all in one pass
2009-12-24 22:29:30 -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
4412f590cf
removed dependency on v8 in favor of bin/cs
2009-12-24 22:08:32 -08:00
tlrobinson
0cd2d78027
Print compiler errors to stderr
2009-12-24 19:34:17 -08:00
Jeremy Ashkenas
be672ebfc1
fixed the bin/cs repl to save assignment between commands by using the new --no-wrap
2009-12-24 17:45:23 -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
31d630bb91
updating docs for isnt
2009-12-24 17:22:46 -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
9dc932e380
bumping to 0.1.2 to get the super()/extends fix out there
0.1.2
2009-12-24 17:05:55 -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