Skip to content

Commit

Permalink
Fix Antlr
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Jastrzebski <[email protected]>
  • Loading branch information
haaawk committed Apr 10, 2024
1 parent c65be4f commit bf5840b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
toolchain go1.21.0

require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9
github.com/antlr4-go/antlr/v4 v4.13.0
github.com/fatih/color v1.14.1
github.com/frankban/quicktest v1.14.4
github.com/go-playground/validator/v10 v10.11.2
Expand All @@ -21,7 +21,6 @@ require (
)

require (
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9 h1:goHVqTbFX3AIo0tzGr14pgfAW2ZfPChKO21Z9MGf/gk=
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9/go.mod h1:pSwJ0fSY5KhvocuWSx4fz3BA8OrA1bQn+K1Eli3BRwM=
github.com/antlr4-go/antlr/v4 v4.13.0 h1:lxCg3LAv+EUK6t1i0y1V6/SLeUi0eKEKdhQAlS8TVTI=
github.com/antlr4-go/antlr/v4 v4.13.0/go.mod h1:pfChB/xh/Unjila75QW7+VU4TSnWnnk9UTnmpPaOR2g=
github.com/chzyer/logex v1.2.1 h1:XHDu3E6q+gdHgsdTPH6ImJMIp436vR6MPtH8gP05QzM=
Expand Down
2 changes: 1 addition & 1 deletion internal/suggester/suggester.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"
"unicode"

"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/libsql/sqlite-antlr4-parser/sqliteparser"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/suggester/tokenRulesFinder.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package suggester

import (
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/libsql/sqlite-antlr4-parser/sqliteparser"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/suggester/tokenStringInspector.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package suggester

import (
"github.com/antlr/antlr4/runtime/Go/antlr/v4"
"github.com/antlr4-go/antlr/v4"
"github.com/libsql/sqlite-antlr4-parser/sqliteparser"
)

Expand Down

0 comments on commit bf5840b

Please sign in to comment.