go/ast.BinaryExpr.X (field)

10 uses

	go/ast (current package)
		ast.go#L390: 		X     Expr        // left operand
		ast.go#L488: func (x *BinaryExpr) Pos() token.Pos     { return x.X.Pos() }
		walk.go#L146: 		Walk(v, n.X)

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

	go/printer
		nodes.go#L580: 	switch l := e.X.(type) {
		nodes.go#L711: 	p.expr1(x.X, prec, depth+diffPrec(x.X, prec))

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L375: 	if x.X != nil {
		encode_ast.gen.go#L377: 		e.EncodeAny(x.X)
		encode_ast.gen.go#L412: 			x.X = d.DecodeAny().(ast.Expr)