const go/token.EOF

18 uses

	go/token (current package)
		token.go#L23: 	EOF
		token.go#L138: 	EOF:     "EOF",

	go/parser
		interface.go#L223: 	p.expect(token.EOF)
		parser.go#L203: 			if p.file.Line(p.pos) != endline || p.tok == token.EOF {
		parser.go#L341: 	for ; p.tok != token.EOF; p.next() {
		parser.go#L825: 	for name0 != nil || p.tok != closing && p.tok != token.EOF {
		parser.go#L1046: 					for p.tok != token.RBRACK && p.tok != token.EOF {
		parser.go#L1230: 	for p.tok != token.RBRACK && p.tok != token.EOF {
		parser.go#L1298: 	for p.tok != token.CASE && p.tok != token.DEFAULT && p.tok != token.RBRACE && p.tok != token.EOF {
		parser.go#L1462: 			if p.tok != token.COLON && p.tok != token.RBRACK && p.tok != token.EOF {
		parser.go#L1472: 			if p.tok != token.RBRACK && p.tok != token.EOF {
		parser.go#L1523: 	for p.tok != token.RPAREN && p.tok != token.EOF && !ellipsis.IsValid() {
		parser.go#L1574: 	for p.tok != token.RBRACE && p.tok != token.EOF {
		parser.go#L2737: 		for iota := 0; p.tok != token.RPAREN && p.tok != token.EOF; iota++ {
		parser.go#L2878: 			for p.tok != token.EOF {

	go/printer
		printer.go#L785: 			tok == token.EOF ||
		printer.go#L1321: 	p.flush(token.Position{Offset: infinity, Line: infinity}, token.EOF)

	go/scanner
		scanner.go#L863: 			tok = token.EOF