type go/ast.ChanType
20 uses
go/ast (current package)
ast.go#L482: ChanType struct {
ast.go#L524: func (x *ChanType) Pos() token.Pos { return x.Begin }
ast.go#L558: func (x *ChanType) End() token.Pos { return x.Value.End() }
ast.go#L585: func (*ChanType) exprNode() {}
filter.go#L176: case *ChanType:
walk.go#L165: case *ChanType:
go/doc
exports.go#L204: case *ast.ChanType:
go/parser
parser.go#L1300: func (p *parser) parseChanType() *ast.ChanType {
parser.go#L1322: return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
parser.go#L1808: if typ, ok := x.(*ast.ChanType); ok {
parser.go#L1820: typ, ok = typ.Value.(*ast.ChanType)
parser.go#L2721: 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#L251: *ast.ChanType:
expr.go#L1141: *ast.InterfaceType, *ast.MapType, *ast.ChanType:
exprstring.go#L155: case *ast.ChanType:
typexpr.go#L387: case *ast.ChanType:
golang.org/x/tools/internal/typesinternal
zerovalue.go#L265: return &ast.ChanType{