Skip to content

Commit 9c04705

Browse files
committed
switch to golang standard library for slices
Signed-off-by: Davanum Srinivas <[email protected]>
1 parent cb85012 commit 9c04705

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

runtime/Go/antlr/v4/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
module github.com/antlr4-go/antlr/v4
22

3-
go 1.20
4-
5-
require golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc
3+
go 1.21

runtime/Go/antlr/v4/lexer_action_executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package antlr
66

7-
import "golang.org/x/exp/slices"
7+
import "slices"
88

99
// Represents an executor for a sequence of lexer actions which traversed during
1010
// the Matching operation of a lexer rule (token).

0 commit comments

Comments
 (0)