go/ast.FuncType.Func (field)

7 uses

	go/ast (current package)
		ast.go#L465: 		Func       token.Pos  // position of "func" keyword (token.NoPos if there is no "func")
		ast.go#L521: 	if x.Func.IsValid() || x.Params == nil { // see issue 3870
		ast.go#L522: 		return x.Func

	go/parser
		parser.go#L1139: 	return &ast.FuncType{Func: pos, Params: params, Results: results}
		parser.go#L1174: 					Func:    token.NoPos,
		parser.go#L1203: 			typ = &ast.FuncType{Func: token.NoPos, Params: params, Results: results}
		parser.go#L2842: 			Func:       pos,