Kyle Simpson
Kyle Simpson
https://macwright.org/2020/02/14/math-keeps-changing.html
https://mail.mozilla.org/pipermail/es-discuss/2014-June/037445.html
ES6 now allows: ``` js var Foo = { .. }; var Bar = { __proto__: Foo, .. }; ``` This is obviously now much preferable in OLOO style, though...
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
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){...
array generics, string generics, etc.
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...
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...
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...