Richard

Results 221 comments of Richard

This relates to the use of ERRnoSemic in Parse.cpp there are only 4 uses of that in the file - to fix this would need to determine which one is...

Indeed the `await` token outside of an async function is parsed as an identifier not a keyword BUT the suggestion here is that it is probably intended by the developer...

@ylukomskyi no one else has claimed it, feel free to give it a go.

This issue: https://github.com/MozillaSecurity/funfuzz/issues/223#issuecomment-465393020 appears to outline what would be needed to port funfuzz to run on a didfferent JS engine, I'll try and follow those steps this week.

We could absolutely have a chakra-samples repository. Assuming the license allows it, copying in the legacy microsoft samples would be a good start and it would be great to see...

I think this will be fixed by #6700 will verify later. EDIT: no this is actually a dup of #6691 it will not be fixed by #6700 but I am...

Simpler repro: ```c delete isNaN.name; Object.getOwnPropertyNames(isNaN); delete isNaN.name; ``` It's not going wrong at runtime in a release build but there is a logical error here - I think the...

@ppenzin I've added tests for the points discussed with pleath above. Upon looking at the logic further I'm happy that my actual code was fine though. There are two different...

This is a regression in master - correct behaviour occurs in 1.11. It's a little obscure - some fiddling finds that it only repros with the arguments object and a...

Here's a slightly simplified repro: ```js function func1() { return obj["o"](); } function func2() { return arguments[-1]; } const obj = { "o" : func2 }; let cor = 0,...