Kyle Simpson

Results 186 issues of Kyle Simpson

https://macwright.org/2020/02/14/math-keeps-changing.html

for second edition

https://www.youtube.com/watch?v=cCOL7MC4Pl0

for second edition

https://mail.mozilla.org/pipermail/es-discuss/2014-June/037445.html

for second edition

ES6 now allows: ``` js var Foo = { .. }; var Bar = { __proto__: Foo, .. }; ``` This is obviously now much preferable in OLOO style, though...

for second edition

Update various parts of the text. There's no such thing as "early ReferenceError" anymore (for things like `0++`); they're all just "early SyntaxError" now. https://github.com/tc39/ecma262/issues/691

for second edition

In the promise-aware gen runner, to prevent the unnecessary extra tick at the beginning, change: ```js return Promise.resolve().then( function handleNext(value){ .. } ); ``` ...to: ```js return Promise.resolve( (function handleNext(value){...

for second edition

array generics, string generics, etc.

for second edition

I have windows 10 + WSL (v1). I just installed this tool and tried to use it on a file inside WSL... I was expecting it to move the file...

enhancement
help wanted

I'd like to open up the discussion of what our various options are for preserving so called "Concrete Syntax" elements in the parse tree format. ## What are Concrete Syntax...

CST

The spec calls for special processing (normalization) on line-endings in template literals: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-static-semantics-tv-s-and-trv-s See specifically the note at the end of that section, which says: > <CR><LF> and <CR> LineTerminatorSequences...

CST