Daniel X Moore
Daniel X Moore
Playing the MIDI "Htack.mid" (for Hard Tack) leads to massive stuttering and the playback drops out entirely about a third of the way through. Also, the harmonica and most instruments...
https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html#casts ```coffee b = ###* @type {B} ### (a) ``` Actual: ```js // Generated by CoffeeScript 2.6.1 var b; b = /** @type {B} */a; ``` Expected: ```js // Generated...
When trying to add a JSDoc comment to an object that is an argument to a function the comment gets moved to the first key of the object. I would...
```coffee -> #@ts-ignore subsystem.clearCache?() ``` Actual ```js // Generated by CoffeeScript 2.6.1 (function() { return typeof subsystem.clearCache === "function" ? subsystem.clearCache() : void 0; }); ``` Expected ```js // Generated...
```coffee try catch e ``` Actual: ```js // Generated by CoffeeScript 2.6.1 var e; try { } catch (error) { e = error; } ``` Expected: ```js // Generated by...
Rebased https://github.com/jashkenas/coffeescript/pull/5279
I'm making a spreadsheet app and rendering input elements inside table rows. The input values and event listeners were getting clobbered by being converted to strings and back. In this...