Rename package antlr4 to antlr

This commit is contained in:
Will Faught 2016-05-20 17:34:38 -07:00
parent bff76c3e5a
commit 519277f78f
43 changed files with 43 additions and 43 deletions

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "fmt" import "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type ATNDeserializationOptions struct { type ATNDeserializationOptions struct {
readOnly bool readOnly bool

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"encoding/hex" "encoding/hex"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type BaseATNSimulator struct { type BaseATNSimulator struct {
atn *ATN atn *ATN

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "strconv" import "strconv"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
// Represents the type of recognizer an ATN applies to. // Represents the type of recognizer an ATN applies to.

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type CharStream interface { type CharStream interface {
IntStream IntStream

View File

@ -3,7 +3,7 @@
// {@link CommonToken} objects. // {@link CommonToken} objects.
// //
package antlr4 package antlr
import "fmt" import "fmt"

View File

@ -9,7 +9,7 @@
// {@link Token//HIDDEN_CHANNEL}, use a filtering token stream such a // {@link Token//HIDDEN_CHANNEL}, use a filtering token stream such a
// {@link CommonTokenStream}.</p> // {@link CommonTokenStream}.</p>
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "sort" import "sort"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"strconv" "strconv"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import () import ()

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"bytes" "bytes"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "fmt" import "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type IntStream interface { type IntStream interface {
Consume() Consume()

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "strconv" import "strconv"

View File

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

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"reflect" "reflect"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"strconv" "strconv"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
// A rule context is a record of a single rule invocation. It knows // A rule context is a record of a single rule invocation. It knows
// which context invoked it, if any. If there is no parent context, then // which context invoked it, if any. If there is no parent context, then

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"strconv" "strconv"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type TokenSource interface { type TokenSource interface {
NextToken() Token NextToken() Token

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
type TokenStream interface { type TokenStream interface {
IntStream IntStream

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "fmt" import "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
// The basic notion of a tree has a parent, a payload, and a list of children. // The basic notion of a tree has a parent, a payload, and a list of children.
// It is the most abstract interface for all the trees used by ANTLR. // It is the most abstract interface for all the trees used by ANTLR.

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import "fmt" import "fmt"

View File

@ -1,4 +1,4 @@
package antlr4 package antlr
import ( import (
"errors" "errors"