**[TS and JS Grammar Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.typescript-javascript-grammar) version:** 0.0.22 / latest From https://github.com/Microsoft/vscode/issues/40161 **Code** ```ts class a extends b, c { } ```  Notice that `b` and `c` are scoped differently. The scopes are correct when the `{` is on the same line: ```ts class a extends b, c { } ```