Michael Ficarra
d0f047dfe7
improved fix for #1266
2011-04-07 19:40:45 -04:00
Michael Ficarra
8e7c454de0
disabling colours for win32 and in presence of NODE_DISABLE_COLORS
...
environment variable
2011-04-05 20:51:28 -04:00
Michael Ficarra
68c75c7eb1
pretty node-like output in the REPL
2011-04-05 20:40:54 -04:00
Michael Ficarra
31ae260282
unnecessarily strict {in,}equality in existence checks
2011-03-29 17:25:09 -04:00
Jeremy Ashkenas
3d3b03e1e4
Merge branch 'stable' of github.com:jashkenas/coffee-script into stable
2011-03-28 08:37:15 -04:00
Jeremy Ashkenas
4d194cb50c
rebuilt parser with Jison 0.2.4
2011-03-28 08:36:42 -04:00
Michael Ficarra
b0d2bf4afe
Merge branch 'improvedRangeCompilation' of github.com:michaelficarra/coffee-script into michaelficarra-improvedRangeCompilation
2011-03-28 00:51:42 -04:00
Michael Ficarra
8f73bc3b4c
Merge branch 'bugfix-1108' of https://github.com/thejh/coffee-script into thejh-bugfix-1108
2011-03-27 23:54:46 -04:00
Michael Ficarra
90495b614f
Merge branch 'thejh-bugfix-1099' into stable
2011-03-27 23:47:01 -04:00
Michael Ficarra
f03bcc24ad
enhanced tests for #1099 fix
2011-03-27 23:42:49 -04:00
Jann Horn
9d72208d9e
added a test (issue #1099 )
2011-03-27 21:35:29 +02:00
Jann Horn
e84e703211
fixes bug mentioned by @satyr in #1108
...
"[v] = a ? b" must compile to
v = (typeof a != "undefined" && a !== null ? a : b)[0];
and not to:
v = typeof a != "undefined" && a !== null ? a : b[0];
2011-03-27 21:22:09 +02:00
Jann Horn
0497c0742f
fixes #1099 : instead of nothing, compile to false
...
"if a in []"
2011-03-27 19:46:44 +02:00
Michael Ficarra
c4b72fcc79
improved range compilation
2011-03-23 13:49:15 -04:00
Jeremy Ashkenas
a2d7716331
Adding CoffeeScript.mode
2011-03-20 17:40:20 -04:00
Jeremy Ashkenas
61918a1efa
merging stable
2011-03-12 07:41:58 -06:00
Jeremy Ashkenas
963adb5230
merging jcoglan's splat declaration patch.
2011-03-12 07:41:14 -06:00
Jeremy Ashkenas
8f8a1ecf18
Merge branch 'master' of github.com:jashkenas/coffee-script
2011-03-12 07:38:34 -06:00
James Coglan
b9343b458f
Fix scoping of splat parameters in argument lists.
2011-03-12 11:46:07 +00:00
Jeremy Ashkenas
ac85fa2fc3
merged stable
2011-03-11 22:44:18 -05:00
Jeremy Ashkenas
b7855857b5
stop trimming all trailing whitespace.
2011-03-11 22:39:32 -05:00
Jeremy Ashkenas
d957c4373b
test-ified function_invocation
2011-03-11 22:18:22 -05:00
Jeremy Ashkenas
f485d8f548
test-ified control_flow
2011-03-11 22:09:33 -05:00
Jeremy Ashkenas
b994e235f3
test-ified comprehensions.coffee
2011-03-11 22:05:52 -05:00
Jeremy Ashkenas
2b1aea80ed
testified compilation.coffee, removed empty command.coffee
2011-03-11 21:59:17 -05:00
Jeremy Ashkenas
53d8083343
removing empty test file for cake.coffee
2011-03-11 21:55:43 -05:00
Jeremy Ashkenas
d30c125ab7
continuing with the ol' refactorTests
2011-03-11 21:55:26 -05:00
Jeremy Ashkenas
9e2c75b548
removing over-hash-comment
2011-03-11 21:41:12 -05:00
Michael Ficarra
aa54b23713
fixes #1168 : leading floating point suppresses newline (thanks, satyr)
2011-02-27 02:11:35 -05:00
Michael Ficarra
dc8e955c4f
test for #1168
2011-02-27 02:11:12 -05:00
Timothy Jones
96b22a16eb
Closes #1001 . Throw cannot be directly used as an expression with parens, but can appear as a statement in an expression.
2011-02-23 15:50:28 +13:00
Timothy Jones
5fbbfbcbe3
Closes #1082 . Puts back use of function calls in parameter lists.
2011-02-23 13:20:01 +13:00
Jeremy Ashkenas
faf98dacf6
stricter array splat tests.
2011-02-18 07:15:40 -05:00
Jeremy Ashkenas
86b47a528a
adding an array splat test.
2011-02-17 21:56:28 -05:00
Jeremy Ashkenas
cf6c21a0d2
merging in aeosynth's tweaks to package.json
2011-02-17 21:21:31 -05:00
James Campos
b1d900210a
add repository to package.json
2011-02-10 18:17:53 -08:00
James Campos
963fc4cebc
add homepage to package.json
2011-02-10 17:54:00 -08:00
Jeremy Ashkenas
6f21f8a402
merging stable
2011-02-01 22:02:57 -05:00
Trevor Burnham
abfc99308d
Setting process.argv[1] to equal the filename of the script being run (issue 1087)
2011-02-01 21:41:20 -05:00
Jeremy Ashkenas
955c87ef30
Bumping version to 1.0.2-pre
2011-02-01 21:32:58 -05:00
Jeremy Ashkenas
b4df62bec1
#1085 , adding CoffeeScript.mode to the docs.
2011-02-01 21:31:54 -05:00
Jeremy Ashkenas
14d2fa3895
#1085 , adding CoffeeScript.mode to the docs.
2011-02-01 21:30:33 -05:00
Jeremy Ashkenas
005c5309c4
Merging in stable at 1.0.1
2011-01-31 23:34:34 -05:00
Jeremy Ashkenas
c44d9ae923
CoffeeScript 1.0.1
1.0.1
2011-01-31 22:39:12 -05:00
Jeremy Ashkenas
a487259e8e
Backporting the REPL fix for Node 0.3.7 and Coffee 1.0-stable
2011-01-31 22:27:56 -05:00
Jeremy Ashkenas
37308e6760
Issue #1071 , parenthesizing undefined literals when accessed.
2011-01-30 21:16:39 -05:00
Jeremy Ashkenas
4ce374be25
Issue #870 ... placeholders in destructuring assignment.
2011-01-30 20:49:02 -05:00
Jeremy Ashkenas
8b8e8a94ff
Issue #997 ... Maloptimized break suppression.
2011-01-30 20:28:11 -05:00
Jeremy Ashkenas
3c9fdde24b
resolved merge
2011-01-30 19:40:59 -05:00
Jeremy Ashkenas
578a46fbda
Issue #875 -- console.log in the REPL
2011-01-30 19:32:07 -05:00