fisker Cheung

Results 335 issues of fisker Cheung

```js class A { ["1"] = ()=>{} ["2"] = 3; }; ``` It should be parsed as two `PropertyDefinition`. ```js class A { ["1"] = ()=>{}["2"] = 3; ^^^^^^^^^^^ MemberExpression...

```js function a(package){'use strict'} ``` SyntaxError: [1:32-1:33]: Unexpected strict mode reserved word Should report on `package` instead.

bug
help wanted

**Describe the bug** A clear and concise description of what the bug is. An `IMPOSSIBLE` error was thrown when parsing the following code ```yaml ? - Detroit Tigers - Chicago...

bug

For simple cases, Instead of ```js const bench = new Bench({ name: 'simple benchmark', time: 100 }) bench .add('faster task', () => { console.log('I am faster') }) .add('slower task', async...

enhancement
question