We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b3a7a commit dd52fcfCopy full SHA for dd52fcf
src/main/kotlin/com/emberjs/gts/GtsSytaxHighlighter.kt
@@ -20,15 +20,14 @@ import com.intellij.psi.tree.TokenSet
20
import javax.swing.Icon
21
22
23
-object GtsLanguage : Language() {
24
- val INSTANCE: GtsLanguage = GtsLanguage()
+class GtsLanguage : Language("Gts") {
+ companion object {
25
+ val INSTANCE = GtsLanguage()
26
+ }
27
}
28
29
internal object SimpleIcons {
30
val icon: Icon = IconLoader.getIcon("/icons/jar-gray.png", SimpleIcons::class.java)
- @Nullable get() {
- return SimpleIcons.field
31
- }
32
33
34
class GtsLexerAdapter : FlexAdapter(GtsLexer(null)) {
0 commit comments