Michael Ficarra
7efea4bb23
removed "globals" option of CoffeeScript.compile and enhanced fix from
...
previous commits
2011-04-29 15:53:30 -04:00
Michael Ficarra
63ce244359
Better fixes for problem mentioned in last 3 commits. Also adds _
...
special value (as in node's REPL) that always holds return value of last
executed expression. Finally, fixes #1109
2011-04-29 13:59:59 -04:00
Michael Ficarra
0bdf9538d0
Recently discussed problem has been understood. Adding relevant values
...
to the global scope upon `eval` in REPL.
See bcf1e178a1 (commitcomment-362493)
2011-04-29 09:29:25 -04:00
Michael Ficarra
b88e23892f
Fixes broken require from last commit. We're not actually sure yet
...
*why* `require` and only `require` was affected. All other globals that
I tried were unaffected: `console`, `parseInt`, `process`, `global`,
`Array`, `Object`, `Buffer`, `setTimeout`, ...
2011-04-29 09:18:47 -04:00
Michael Ficarra
bcf1e178a1
Fixes error in REPL where any variable defined in
...
`src/coffee-script.coffee` is shared with the REPL scope. Example: try
`lexer` or `@VERSION` pre-commit.
2011-04-29 02:32:16 -04:00
Jeremy Ashkenas
a27feb4157
Making the naming of the --join'd coffeescript mandatory. Issue #1076 .
2011-04-27 23:06:58 -04:00
Jeremy Ashkenas
a93c835557
Issue #1006 , infinite loop in addImplicitParentheses.
2011-04-27 22:49:42 -04:00
Jeremy Ashkenas
3912e29eb7
Merge branch 'master' of github.com:jashkenas/coffee-script
2011-04-27 21:56:31 -04:00
Jeremy Ashkenas
0bad04d374
Issue #1182 -- subclasses with external constructor functions.
2011-04-27 21:56:08 -04:00
Jeremy Ashkenas
79e160a46b
Edited documentation/index.html.erb via GitHub
2011-04-27 06:51:05 -07:00
Timothy Jones
761b3b3646
Merged pull request #1298 from pjaspers/patch-1.
...
Typo error, s/synax/syntax
2011-04-27 03:18:32 -07:00
Piet Jaspers
937f027f3c
Typo error, s/synax/syntax
2011-04-27 00:57:37 -07:00
Jeremy Ashkenas
da14538299
Issue #1272 documentation
2011-04-26 21:47:48 -04:00
Jeremy Ashkenas
02fbf766ad
removing erroneous tabs from nodes.coffee.
2011-04-26 21:23:51 -04:00
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