Ross Kirsling
Ross Kirsling
Main points: 1. I was quite confused by the [`ToString` table](https://tc39.es/proposal-record-tuple/#sec-tostring) until I saw #319; if we keep this behavior, we should add a note explaining it. 2. Shouldn't [`SameValueNonGeneric`](https://tc39.es/proposal-record-tuple/#sec-samevaluenonnumeric)...
Identified in tc39/ecma262#1589. ### Normal case: ```html Greetings. The value *42* is my favorite. ``` → ```html Greetings. The value 42 is my favorite. ``` ### Problem case: ```html Greetings....
As mentioned in https://github.com/tc39/how-we-work/pull/56#discussion_r244893866, it would be nice to flesh out our "Actionable Feedback" document with some realistic examples of less effective and more effective ways of conveying the same...
It seems it would be helpful to have a document of "guiding principles" for newcomers to keep in mind when making a proposal or prioritizing concerns that arise when evaluating...
**Describe the bug** The "Add or remove instruments" dialog describes Acoustic Bass as `Acoustic bass guitar.`. This is incorrect; as a [comment](https://github.com/musescore/MuseScore/blob/master/share/instruments/instruments.xml#L11832) in the code clearly describes, this is how...
The words `term` and `factor` are being misused in Lox's parser. A polynomial is a summation of _terms_ which are each a product of _factors_. These are correctly used in...
[This test](https://github.com/tc39/test262/blob/main/test/language/expressions/assignment/S11.13.1_A7_T3.js) for evaluation order of the assignment operator is quite interesting, as no browser-hosted engines pass it. Specifically, we see the following: ```js var o = {}; var p...
Without exactly one space: ``` λ eshost -se "'x:y'" #### ch, jsc, sm, v8, xs x:y λ eshost -se "'x: y'" #### ch, jsc, sm, v8, xs x: y ```...
Resolves #3295.
Add tests for normative PR https://github.com/tc39/ecma262/pull/3568, which adds Annex B section, "Runtime Errors for Function Call Assignment Targets". Specifically: 1. Correct the name of `src/assignment-target-type/callexpression-arguments.case` to `callexpression.case` and mark it...