Describe the issue
Which language seems to have the issue?
Are you using highlight or highlightAuto? highlight
...
Sample Code to Reproduce
https://jsfiddle.net/fsLxdrpm/1/
const ElementPrototype = Element.prototype;
const isBool = (v: any) => typeof v === 'boolean';
const $class = (v: any) => typeof v === 'boolean';
const whether = isBool(true);
const test = $class(true);
Expected behavior
$class prefix with $ went wrong
- method with
class name went wrong
- method isn't be highlighted
- Element isn't be highlighted
- isBool isn't be highlighted