antlr4 -> antlr

This commit is contained in:
Peter Boyer 2016-05-25 17:20:16 -04:00
parent 99d6b812c1
commit ed5b4d14f7
44 changed files with 43 additions and 43 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
package antlr4
package antlr
// The root of the ANTLR exception hierarchy. In general, ANTLR tracks just
// 3 kinds of errors: prediction errors, failed predicate errors, and

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
package antlr4
package antlr
// 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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
package antlr4
package antlr
import (
"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.
// 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"

View File

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