michaelgmcd / vscode-language-babel

VSCode syntax highlighting for today's JavaScript
https://marketplace.visualstudio.com/items?itemName=mgmcdermott.vscode-language-babel
MIT License
131 stars 17 forks source link

`implements` clause is wrong #55

Closed goodmind closed 4 years ago

goodmind commented 5 years ago

Describe the issue

implements clause highlighting is wrong

Screenshot of Current Behavior

image

Sample Code to Reproduce

interface A {
  a: string;
}
declare class Yo implements A {
  a: string;
}
michaelgmcd commented 4 years ago

This issue is due to the declare keyword so it's not a very common one. This was not supported in Flow until recently so it makes sense that this plugin wouldn't. I will take a look at this when I can.

michaelgmcd commented 4 years ago

This should be fixed in 0.0.25. Please let me know if it's not.