go/ast.ChanType.Value (field)

12 uses

	go/ast (current package)
		ast.go#L463: 		Value Expr      // value type
		ast.go#L533: func (x *ChanType) End() token.Pos      { return x.Value.End() }
		filter.go#L180: 		return filterType(t.Value, f, export)
		walk.go#L179: 		Walk(v, n.Value)

	go/doc
		exports.go#L192: 		r.filterType(nil, t.Value)

	go/parser
		parser.go#L1028: 	return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
		parser.go#L1574: 				typ, ok = typ.Value.(*ast.ChanType)

	go/printer
		nodes.go#L970: 		p.expr(x.Value)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L716: 	if x.Value != nil {
		encode_ast.gen.go#L718: 		e.EncodeAny(x.Value)
		encode_ast.gen.go#L747: 			x.Value = d.DecodeAny().(ast.Expr)

	golang.org/x/pkgsite/internal/godoc/internal/doc
		exports.go#L192: 		r.filterType(nil, t.Value)