This class ``` javascript class ClassName { async methodName(arg1) { } } ``` should have `async` keyword highlighted as `jsAsyncKeyword`. But it is not. It just have `jsClassBlock`. If I'm correct adding `jsAsyncKeyword` to [this line](https://github.com/pangloss/vim-javascript/blob/master/syntax/javascript.vim#L138) should fix this, because it works for me.
This class
should have
asynckeyword highlighted asjsAsyncKeyword. But it is not. It just havejsClassBlock.If I'm correct adding
jsAsyncKeywordto this line should fix this, because it worksfor me.