**[TS and JS Grammar Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.typescript-javascript-grammar) version:** 0.0.22 / latest **Code** ```ts class Foo { bar () { [...this.foobar()]; [... this.foobar()]; } } ```  The first `this` is scoped as: ``` variable.other.object.js meta.function-call.js meta.array.literal.js meta.block.js meta.method.declaration.js meta.class.js source.js ``` The second one with the space is: ``` variable.language.this.js meta.function-call.js meta.array.literal.js meta.block.js meta.method.declaration.js meta.class.js source.js ```