const go/token.FUNC

13 uses

	go/token (current package)
		token.go#L110: 	FUNC
		token.go#L211: 	FUNC:   "func",

	go/parser
		parser.go#L933: 	pos := p.expect(token.FUNC)
		parser.go#L1042: 	case token.FUNC:
		parser.go#L1168: 	case token.FUNC:
		parser.go#L2226: 		token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
		parser.go#L2438: 	pos := p.expect(token.FUNC)
		parser.go#L2505: 	case token.FUNC:

	go/printer
		nodes.go#L800: 		p.print(x.Type.Pos(), token.FUNC)
		nodes.go#L947: 		p.print(token.FUNC)
		nodes.go#L1770: 	p.print(d.Pos(), token.FUNC, blank)
		nodes.go#L1806: 		tok = token.FUNC
		nodes.go#L1832: 			p.linebreak(p.lineFor(d.Pos()), min, ignore, tok == token.FUNC && p.numLines(d) > 1)