Jeremy Ashkenas
b13bef7f45
#1256 , documentation typo
2011-04-26 20:46:07 -04:00
Jeremy Ashkenas
5e1aadba80
expanding on the sentence that talks about standalone extends ... Issue #1258
2011-04-26 20:42:24 -04:00
Jeremy Ashkenas
44e0bbf342
Issue #1262 , print filename in error messages for require module scripts.
2011-04-26 20:35:30 -04:00
Jeremy Ashkenas
a7ed3379df
merging in kit's in-order execution patch.
2011-04-23 13:40:40 -04:00
Jeremy Ashkenas
19849e66d4
renaming wordy test titles.
2011-04-23 13:35:15 -04:00
Jeremy Ashkenas
e9dac2fddc
Fixes #1280 , regex and compound division mixup.
2011-04-23 13:33:35 -04:00
Jeremy Ashkenas
e61fe48b4d
Issue #1294 , throw the error for a bad symlink reference when compiling a file.
2011-04-23 13:21:58 -04:00
Jeremy Ashkenas
7e8b52ad70
be more consistent about ===
2011-04-20 23:43:41 -04:00
Jeremy Ashkenas
d5a5f9572e
be consistent about triple-equals-equality.
2011-04-20 23:24:59 -04:00
Jeremy Ashkenas
fe4f7f8b0f
Merge branch 'gh-pages' of https://github.com/willmoffat/coffee-script
2011-04-20 23:16:27 -04:00
Jeremy Ashkenas
4e3f80749f
merging issue #1127
2011-04-20 23:12:05 -04:00
Jeremy Ashkenas
ff8c340330
Merge branch 'keyboard' of https://github.com/willmoffat/coffee-script
2011-04-20 23:10:48 -04:00
Jeremy Ashkenas
039109ed56
Removing resources section from the homepage, in favor of linking to the Wiki. #1137
2011-04-20 23:08:21 -04:00
Jeremy Ashkenas
f3f34e9ef5
Fixes #1188 , scope for self-referencing functions.
2011-04-20 22:16:56 -04:00
Jeremy Ashkenas
2f39102026
merging fix for #1124
2011-04-18 20:44:27 -04:00
Kit Goncharov
6793eb383c
Fix a typo in browser.coffee.
2011-04-11 13:50:27 -06:00
Kit Goncharov
2caceda8c4
Enforce script execution order in browser.coffee.
2011-04-11 13:38:38 -06:00
Jeremy Ashkenas
238dc3a5b6
merging in #1268 ... michaelficarra's colored REPL.
2011-04-09 17:42:03 -07:00
Jeremy Ashkenas
390ff30690
Merge branch 'stable'
2011-04-09 17:39:55 -07:00
Jeremy Ashkenas
e1cf187cfe
Merge branch 'bugfix-1157' of https://github.com/thejh/coffee-script into stable
2011-04-09 16:11:21 -07:00
Jeremy Ashkenas
8c01df7828
Merge branch 'stable'
2011-04-09 16:02:10 -07:00
Jeremy Ashkenas
ff8faa4cd7
Merge branch 'stable' of github.com:jashkenas/coffee-script into stable
2011-04-09 16:01:20 -07:00
Jeremy Ashkenas
b9aa64fd25
merging in Josh's patch for Node 0.4.x module lookup changes.
2011-04-09 16:00:57 -07:00
Jeremy Ashkenas
8dfd53620c
Merge branch 'module-loading' of https://github.com/josh/coffee-script into stable
2011-04-09 16:00:17 -07:00
Michael Ficarra
0090aee0e5
full revert of 4ce374be25
2011-04-09 10:48:14 -04:00
Michael Ficarra
230dea1243
fixes #1274 : {}=a() and []=a() compile to false instead of a()
2011-04-09 09:54:45 -04:00
Michael Ficarra
3453bfa513
regression tests for #1274
2011-04-09 09:53:04 -04:00
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
Jann Horn
8b443b94ea
added a test
2011-03-28 23:16:49 +02:00
Jann Horn
6ec9c844e4
fixes #1124 (and uglifies generated JS)
2011-03-28 23:12:27 +02: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
6646155712
fixes #1157 : when compiling multiple scripts, compile them if at least one of them isn't empty
2011-03-27 23:30:55 +02: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
Joshua Peek
573e2b0012
Assign module.paths for node_module loading
2011-03-25 15:36:48 -05: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
Will Moffat
67b5ebdb76
Bind not required for evalJS.
2011-03-19 16:03:53 -07:00
Will Moffat
4c2ce2b45b
Merge branch 'master' of https://github.com/jashkenas/coffee-script into keyboard
2011-03-19 15:28:50 -07:00
Jeremy Ashkenas
3b2bade2f2
Use the newer Node.js binding for 'vm'.
2011-03-16 05:47:58 -05:00
Jeremy Ashkenas
cdeb28a793
missing space.
2011-03-16 05:45:17 -05:00