File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
core/src/main/kotlin/com/alecstrong/sql/psi/core Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix Ide hang when using code completion in virtual table module (https://github.com/sqldelight/sql-psi/pull/730 )
56- Support numeric literals when using virtual table module arguments (https://github.com/sqldelight/sql-psi/pull/728 )
67
78## [ 0.7.2] - 2025-11-12
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ abstract class ModuleParserUtil : GeneratedParserUtilBase() {
2222 )
2323 columnName.parse(builder, level + 1 )
2424 var parens = 0
25- while (builder.tokenType != SqlTypes .COMMA ) {
25+ while (builder.tokenType != null && builder.tokenType != SqlTypes .COMMA ) {
2626 if (builder.tokenType == SqlTypes .LP ) parens++
2727 if (builder.tokenType == SqlTypes .RP && (-- parens == - 1 )) break
2828 builder.advanceLexer()
You can’t perform that action at this time.
0 commit comments