type go/ast.ChanType
18 uses
go/ast (current package)
ast.go#L472: ChanType struct {
ast.go#L514: func (x *ChanType) Pos() token.Pos { return x.Begin }
ast.go#L548: func (x *ChanType) End() token.Pos { return x.Value.End() }
ast.go#L576: func (*ChanType) exprNode() {}
filter.go#L179: case *ChanType:
walk.go#L189: case *ChanType:
go/doc
exports.go#L209: case *ast.ChanType:
go/parser
parser.go#L1196: func (p *parser) parseChanType() *ast.ChanType {
parser.go#L1218: return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
parser.go#L1760: if typ, ok := x.(*ast.ChanType); ok {
parser.go#L1772: typ, ok = typ.Value.(*ast.ChanType)
parser.go#L2713: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
go/printer
nodes.go#L408: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
nodes.go#L1021: case *ast.ChanType:
go/types
expr.go#L500: *ast.ChanType:
expr.go#L1636: *ast.InterfaceType, *ast.MapType, *ast.ChanType:
exprstring.go#L153: case *ast.ChanType:
typexpr.go#L363: case *ast.ChanType: