Skip to content

Commit

Permalink
Fix test compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lippfi committed Jun 26, 2024
1 parent 4db19be commit 79b6ed0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import org.antlr.v4.runtime.BaseErrorListener
import org.antlr.v4.runtime.RecognitionException
import org.antlr.v4.runtime.Recognizer

internal class IdeavimErrorListener : BaseErrorListener() {
public class IdeavimErrorListener : BaseErrorListener() {
private val logger = vimLogger<IdeavimErrorListener>()
companion object {
val testLogger = mutableListOf<String>()
public companion object {
public val testLogger: MutableList<String> = mutableListOf<String>()
}

override fun syntaxError(
Expand Down

0 comments on commit 79b6ed0

Please sign in to comment.