File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
src/main/kotlin/glsl/plugin/language Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ compileKotlin {
24
24
25
25
intellij {
26
26
// version = 'IC-2024.1.4'
27
- version = ' IU -2024.1.4'
27
+ version = ' CL -2024.1.4'
28
28
updateSinceUntilBuild = true
29
29
// plugins = ['JavaScript']
30
30
}
Original file line number Diff line number Diff line change @@ -82,10 +82,6 @@ class GlslLexer : LexerBase() {
82
82
}
83
83
84
84
if (state == MACRO_IDENTIFIER_STATE && myTokenType == IDENTIFIER ) {
85
- if (myTokenType !in listOf (IDENTIFIER , WHITE_SPACE )) {
86
- lexer.yybegin(MACRO_BODY_STATE )
87
- return
88
- }
89
85
val macroType = getMacroType() ? : return
90
86
macroDefine = GlslMacro (tokenText, macroType)
91
87
} else if (state == MACRO_FUNC_DEFINITION_STATE && myTokenType == MACRO_FUNC_PARAM ) {
You can’t perform that action at this time.
0 commit comments