go/ast.SendStmt.Value (field)

9 uses

	go/ast (current package)
		ast.go#L632: 		Value Expr
		ast.go#L787: func (s *SendStmt) End() token.Pos    { return s.Value.End() }
		walk.go#L200: 		Walk(v, n.Value)

	go/parser
		parser.go#L1734: 		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
		parser.go#L2077: 			comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}

	go/printer
		nodes.go#L1271: 		p.expr0(s.Value, depth)

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