go/ast.ChanType.Begin (field)

4 uses

	go/ast (current package)
		ast.go#L473: 		Begin token.Pos // position of "chan" keyword or "<-" (whichever comes first)
		ast.go#L514: func (x *ChanType) Pos() token.Pos      { return x.Begin }

	go/parser
		parser.go#L1218: 	return &ast.ChanType{Begin: pos, Arrow: arrow, Dir: dir, Value: value}
		parser.go#L1770: 				arrow, typ.Begin, typ.Arrow = typ.Arrow, arrow, arrow