Jeremy Ashkenas
f44443b58a
still some kinks to work out -- mid-expression blocks
2009-12-29 09:18:41 -05:00
Jeremy Ashkenas
3fbb870d01
using 'where' for array comprehension filtering, after kamatsu's suggestion -- execution tests pass now with significant whitespace
2009-12-29 08:52:26 -05:00
Jeremy Ashkenas
cea417de02
moving along with whitespace
2009-12-28 23:08:02 -05:00
Jeremy Ashkenas
ddd52a1845
first draft of kamatsu's rewrite rules -- finally got whitespace to be flexible enough, I think.
2009-12-28 21:07:47 -05:00
Jeremy Ashkenas
50bdd2668c
got lexer balancing parens, indent/outdents, brackets, and curlies
2009-12-28 21:02:40 -05:00
Jeremy Ashkenas
bb84a982ce
merging in master
2009-12-28 20:06:23 -05:00
Jeremy Ashkenas
7b5b261743
removed unused example
2009-12-28 20:05:14 -05:00
Jeremy Ashkenas
c84bb0c875
fixing relative path for execution tests
2009-12-28 16:23:48 -05:00
Jeremy Ashkenas
a186e47e2c
stop shifting args
2009-12-28 16:20:11 -05:00
Jeremy Ashkenas
41f3d54f4a
rebuilding narwhal libs
2009-12-28 16:10:56 -05:00
Jeremy Ashkenas
9e47f6bd58
merging in tlrobinson's fix for package.json
2009-12-28 16:09:14 -05:00
tlrobinson
3762f4c680
Add package.json to gemspec files so Narwhal integrations works when installed as a gem.
2009-12-28 12:45:47 -08:00
Jeremy Ashkenas
845c8cba3b
removing broken accidental commit
2009-12-28 09:02:55 -08:00
tlrobinson
a722b42eed
Add package on command line in case it's not installed in a Narwhal packages path.
2009-12-28 01:49:07 -08:00
tlrobinson
78e08f316d
Merge branch 'master' of git://github.com/jashkenas/coffee-script
2009-12-28 01:36:23 -08:00
tlrobinson
55616cf3b8
Fixed Narwhal integration. Cleaned up module organization, etc.
2009-12-28 01:16:57 -08:00
Jeremy Ashkenas
aa45456d7d
part of the way to supporting multiline array comprehensions -- the grammar and parsing is there -- the code generation is tricky
2009-12-27 21:50:02 -08:00
Jeremy Ashkenas
ac00a19514
CoffeeScript 0.1.6 -- bugfixes
2009-12-27 12:49:11 -08:00
Jeremy Ashkenas
7ae8687a3e
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
55e736cb27
more underscore examples
2009-12-27 11:01:19 -08:00
Jeremy Ashkenas
3ee4e98ccc
more underscore and bugfix edits to code generation
2009-12-26 22:24:21 -08:00
Jeremy Ashkenas
d7dd18b476
more underscore, and removing custom_assign and return from conditional compilation
2009-12-26 21:55:56 -08:00
Jeremy Ashkenas
097bede5c8
coffeescript 0.1.5, just for kicks
2009-12-26 21:25:37 -08:00
Jeremy Ashkenas
983dac84a2
docs for range comprehensiosn
2009-12-26 20:46:31 -08:00
Jeremy Ashkenas
eeef8d3612
got negative ranges working with (much, much) uglier compiled code
2009-12-26 20:35:43 -08:00
Jeremy Ashkenas
b4250c0f02
that's it for now for significant whitespace -- I really just can't make flexible enough
2009-12-26 19:29:59 -08:00
Jeremy Ashkenas
cc0c92d20d
smarter but uglier lexer -- now handles most significant whitespace cases. Clean it up though... (newlines after outdents)
2009-12-26 13:22:53 -08:00
Jeremy Ashkenas
694833dbd0
removing no_paren -- it was optimizing away order of operations
2009-12-26 11:55:34 -08:00
Jeremy Ashkenas
fde9852090
removing no_paren -- can cause order of operations errors
2009-12-26 11:10:59 -08:00
Jeremy Ashkenas
191875a85b
got a lexer working along the lines of what kamatsu proposes
2009-12-26 10:59:47 -08:00
Jeremy Ashkenas
556f8cb68a
little more progress on whitespace
2009-12-26 10:49:11 -08:00
Jeremy Ashkenas
5bed5646be
merging in master
2009-12-26 09:59:06 -08:00
Jeremy Ashkenas
08dddb27a0
adding newline escaping, with tests
2009-12-26 09:29:03 -08:00
Jeremy Ashkenas
2a1fc4b1b7
docs
2009-12-26 09:05:57 -08:00
Jeremy Ashkenas
3c67d54bbe
changed bin/coffee-script to bin/coffee
2009-12-26 08:57:13 -08:00
Jeremy Ashkenas
6a30d48ced
fixed range comprehension indexing
2009-12-26 00:27:49 -08:00
Jeremy Ashkenas
d59ef71642
trading the cs> prompt for the coffee> prompt
2009-12-26 00:18:24 -08:00
Jeremy Ashkenas
ff78546465
added array comprehensions over ranges
2009-12-26 00:16:40 -08:00
Jeremy Ashkenas
834442148b
docs for assignment-as-expression
2009-12-25 23:17:34 -08:00
Jeremy Ashkenas
adaae0ccae
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
7c132d65dc
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
b58102c514
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
52700ca922
comment
2009-12-25 19:34:40 -08:00
Jeremy Ashkenas
dd5317ebe9
documenting ranges and slices
2009-12-25 16:35:57 -08:00
Jeremy Ashkenas
1ba7c77136
reorganizing test fixtures and adding range literals for array slices
2009-12-25 16:20:28 -08:00
Jeremy Ashkenas
62485c2b8c
CoffeeScript 0.1.4
2009-12-25 14:43:24 -08:00
Jeremy Ashkenas
d46bf8ee71
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
e494d520ea
stopped using __proto__, instead, using a variant of goog.inherits for extends and super()
2009-12-25 13:57:47 -08:00
Jeremy Ashkenas
f55b4cd8b6
ForBody is really the ForSource
2009-12-25 13:40:57 -08:00
Jeremy Ashkenas
763e04fec9
cleaned up the for grammar and eliminated a shift/reduce conflict
2009-12-25 13:39:33 -08:00