slackhq / vscode-hack

Hack language & HHVM debugger support for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=pranayagarwal.vscode-hack
MIT License
73 stars 36 forks source link

No highlighting of enum definitions #128

Closed Wilfred closed 2 years ago

Wilfred commented 2 years ago
enum MyEnum: int as int {
  X = 1;
  Y = 2;
  Z = 3;
}

enum should be highlighted as a keyword and MyEnum as a type.