go/ast.BinaryExpr.Y (field)

10 uses

	go/ast (current package)
		ast.go#L393: 		Y     Expr        // right operand
		ast.go#L521: func (x *BinaryExpr) End() token.Pos     { return x.Y.End() }
		walk.go#L147: 		Walk(v, n.Y)

	go/parser
		parser.go#L1623: 		x = &ast.BinaryExpr{X: p.checkExpr(x), OpPos: pos, Op: op, Y: p.checkExpr(y)}

	go/printer
		nodes.go#L595: 	switch r := e.Y.(type) {
		nodes.go#L716: 	yline := p.lineFor(x.Y.Pos())
		nodes.go#L729: 	p.expr1(x.Y, prec+1, depth+1)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L387: 	if x.Y != nil {
		encode_ast.gen.go#L389: 		e.EncodeAny(x.Y)
		encode_ast.gen.go#L418: 			x.Y = d.DecodeAny().(ast.Expr)