type go/ast.ChanType

24 uses

	go/ast (current package)
		ast.go#L485: 	ChanType struct {
		ast.go#L527: func (x *ChanType) Pos() token.Pos      { return x.Begin }
		ast.go#L569: func (x *ChanType) End() token.Pos      { return x.Value.End() }
		ast.go#L596: func (*ChanType) exprNode()      {}
		filter.go#L179: 	case *ChanType:
		walk.go#L165: 	case *ChanType:

	go/doc
		exports.go#L204: 	case *ast.ChanType:

	go/parser
		parser.go#L1316: func (p *parser) parseChanType() *ast.ChanType {
		parser.go#L1338: 	return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
		parser.go#L1828: 		if typ, ok := x.(*ast.ChanType); ok {
		parser.go#L1840: 				typ, ok = typ.Value.(*ast.ChanType)
		parser.go#L2741: 	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:

	go/printer
		nodes.go#L423: 	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
		nodes.go#L982: 		case *ast.ChanType:
		nodes.go#L1068: 	case *ast.ChanType:

	go/types
		expr.go#L281: 		*ast.ChanType:
		expr.go#L1190: 		*ast.InterfaceType, *ast.MapType, *ast.ChanType:
		exprstring.go#L155: 	case *ast.ChanType:
		typexpr.go#L373: 	case *ast.ChanType:

	golang.org/x/tools/go/ast/edge
		edge.go#L207: 	ChanType_Value:        info[*ast.ChanType]("Value"),

	golang.org/x/tools/go/ast/inspector
		typeof.go#L124: 	case *ast.ChanType:
		walk.go#L155: 	case *ast.ChanType:

	golang.org/x/tools/internal/typesinternal
		fx.go#L33: 			*ast.ChanType,
		zerovalue.go#L254: 		return &ast.ChanType{