type golang.org/x/mod/modfile.input

19 uses

	golang.org/x/mod/modfile (current package)
		read.go#L322: type input struct {
		read.go#L341: func newInput(filename string, data []byte) *input {
		read.go#L342: 	return &input{
		read.go#L389: func (in *input) Error(s string) {
		read.go#L399: func (in *input) eof() bool {
		read.go#L404: func (in *input) peekRune() int {
		read.go#L413: func (in *input) peekPrefix(prefix string) bool {
		read.go#L425: func (in *input) readRune() int {
		read.go#L472: func (in *input) startToken() {
		read.go#L481: func (in *input) endToken(kind tokenKind) {
		read.go#L496: func (in *input) peek() tokenKind {
		read.go#L501: func (in *input) lex() token {
		read.go#L508: func (in *input) readToken() {
		read.go#L638: func (in *input) order(x Expr) {
		read.go#L670: func (in *input) assignComments() {
		read.go#L771: func (in *input) parseFile() {
		read.go#L804: func (in *input) parseStmt() {
		read.go#L852: func (in *input) parseLineBlock(start Position, token []string, lparen token) *LineBlock {
		read.go#L893: func (in *input) parseLine() *Line {