If you insert the following code into atom, typescript will color the last class improperly ``` interface SomeInterface { } class ParentClass { constructor() { } } class MyClass extends ParentClass implements SomeInterface { constructor() { super() } } ``` Here is an image to show you what I mean  As you can see the highlighting for the last three words `on line 11` all have the same highlighting. Is this fixable, if so when should I expect an update? Thanks for looking into the issue