Jeremy Ashkenas
08294dc4d6
s/process.mainModule/require.main
2011-05-01 13:45:47 -04:00
Jeremy Ashkenas
09712603c4
coffee-script 1.1.0
2011-05-01 12:08:15 -04:00
Jeremy Ashkenas
2fb7ccc8f0
Revert "Fix for #1304 ... but disallows an alternative syntax."
...
This reverts commit 31bfe50831 .
2011-05-01 10:43:50 -04:00
Jeremy Ashkenas
31bfe50831
Fix for #1304 ... but disallows an alternative syntax.
2011-05-01 10:16:04 -04:00
Jeremy Ashkenas
7480f55e53
making end implicit tokens generated
2011-05-01 10:03:50 -04:00
Jeremy Ashkenas
5fd82e829b
fixing test.html
2011-05-01 08:28:00 -04:00
Jeremy Ashkenas
43ebec1812
Merge branch 'master' of github.com:jashkenas/coffee-script
2011-05-01 08:12:27 -04:00
Trevor Burnham
824e081005
Fixing unavailability of global properties on REPL
2011-05-01 01:45:14 -04:00
Trevor Burnham
fc992ba380
Using process.mainModule.filename instead of passing __filename
2011-04-30 23:01:36 -04:00
Trevor Burnham
264070bfc7
Making process.execPath point to coffee when running .coffee files
...
Related: #1303 set `process.argv[0]` to `coffee`. This makes
`process.execPath` consistent with that change.
2011-04-30 19:45:32 -04:00
Jeremy Ashkenas
a91509ba72
reintroducing a variant of kit's in-order script loading fix.
2011-04-30 13:48:54 -04:00
Jeremy Ashkenas
0dfe2429bc
reverted @kitgoncharov's commits that broke the browser runner.
2011-04-30 13:33:28 -04:00
Jeremy Ashkenas
f1ad2e1fae
Revert "Fix a typo in browser.coffee."
...
This reverts commit 6793eb383c .
2011-04-30 13:32:26 -04:00
Jeremy Ashkenas
c51679810a
fixing unfoldSoak performance my memoizing. #1033
2011-04-30 13:13:09 -04:00
Jeremy Ashkenas
bf8fbc2c0e
Fixing process.argv[0] ... #1303
2011-04-30 10:59:55 -04:00
Jeremy Ashkenas
0ed8ae28e7
merging #1303 ... setting process.argv[0] to coffee for coffee's run.
2011-04-30 10:39:28 -04:00
Jeremy Ashkenas
83e7d442fb
slightly less sketchy fix for #1106 .
2011-04-30 10:35:56 -04:00
Jeremy Ashkenas
76252659fd
Merge pull request #1300 from michaelficarra/issue1106.
...
fixes issue #1106
2011-04-30 07:29:41 -07:00
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
Trevor Burnham
fe889b8428
Setting process.argv[0] to 'coffee' in the REPL (aesthetic)
2011-04-28 18:35:42 -04:00
Trevor Burnham
cde7498c8e
Setting process.argv[0] to 'coffee' in 'coffee foo.coffee'
...
See #1301 et al.
2011-04-28 18:27:40 -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
0bad04d374
Issue #1182 -- subclasses with external constructor functions.
2011-04-27 21:56:08 -04:00
Michael Ficarra
50c3a64553
fixes #1106 ; __proto__ compilation
2011-04-27 21:39:30 -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
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
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
8e7c454de0
disabling colours for win32 and in presence of NODE_DISABLE_COLORS
...
environment variable
2011-04-05 20:51:28 -04:00