coffeescript
coffeescript copied to clipboard
Unfancy JavaScript
### Input Code ```coffee for {x} from y x ``` ### Expected Behavior ```coffee var x; for ({x} of y) { x; } ``` ### Current Behavior ```javascript var x,...
### Input Code ```coffee then ``` ### Expected Behavior ``` [stdin]:1:1: error: unexpected then then ^^^^ ``` ### Current Behavior ``` TypeError: Cannot read properties of undefined (reading '2') ```...
### Input Code ```coffee /// a\ # this is a bug /// ``` ### Expected Behavior ```javascript // this is a bug /a /; ``` ### Current Behavior ```javascript //...
This PR bumps GitHub action workflows to their latest versions.
I was thinking about if coffeescript had a way to make multiple imports, like: ```coffee import ( "one" "two" "three" "four" ) as ( @one two { three } );...
Choose one: is this a bug report or feature request? Bug report ### Input Code Example code: ```coffee 1.e1 ``` And another example: ```coffee 1.e-1 ``` ### Expected Behavior ```js...
Hi there! Sorry for posting here — I couldn't find a better place to ask. I'm building an [editor and renderer](https://axes.quest/) for coding shader-like snippets — a kind of educational...
https://github.com/jashkenas/coffeescript/issues/5487 Built-in tests are passing. But it wasn't tested extensively otherwise, so I'm not comfortable doing a PR yet. The code could certainly be improved too. I'm gonna move on,...
fix ci
This PR builds off of #5463 to get `main` passing CI again. *Closes #5463.* Changes: - pin `architecture: x64` for our node runners to fix the error `setup-node` has developed...
The In Operator seems to have been broken for a while... ```coffee if 'github.com' in "https://github.com/jashkenas/coffeescript/issues/5481" alert 'Found' ``` Does not work (using the version on https://coffeescript.org/) It renders to...