Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Disallow comma operators (#920)
This is often an accident, such as in ```typescript assert.throws(() => { func(), Error; }); ``` That code should instead be: ```typescript assert.throws(() => { func(); }, Error); ```
- Loading branch information