Highlighting for `this` works fine inside a function, but at the top level it has no highlighting. E.g. ``` this.foo = 'blah'; // <-- no highlighting on "this" exports.bar = function() { this.bar = 'hey'; <-- "this" is highlighted correctly }; ```