Fix unused import error

This commit is contained in:
Peter Boyer 2016-11-04 14:40:15 -04:00
parent 0541f34a7e
commit f553056a2b
8 changed files with 0 additions and 18 deletions

View File

@ -1,8 +1,5 @@
package antlr
import "fmt"
var ATNInvalidAltNumber int
type ATN struct {

View File

@ -1,7 +1,5 @@
package antlr
import "fmt"
// TokenFactory creates CommonToken objects.
type TokenFactory interface {
Create(source *TokenSourceCharStreamPair, ttype int, text string, channel, start, stop, line, column int) Token

View File

@ -1,7 +1,6 @@
package antlr
import (
"fmt"
"strconv"
)

View File

@ -2,7 +2,6 @@ package antlr
import (
"bytes"
"fmt"
"io"
"os"
)

View File

@ -1,7 +1,5 @@
package antlr
import "fmt"
type InputStream struct {
name string
index int

View File

@ -1,7 +1,6 @@
package antlr
import (
"fmt"
"strconv"
"strings"
)

View File

@ -1,9 +1,5 @@
package antlr
import (
"fmt"
)
// Represents an executor for a sequence of lexer actions which traversed during
// the Matching operation of a lexer rule (token).
//

View File

@ -1,9 +1,5 @@
package antlr
import (
"fmt"
)
type LL1Analyzer struct {
atn *ATN
}