go/ast.SendStmt.Value (field)

7 uses

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

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

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

	go/types
		stmt.go#L417: 		check.expr(&val, s.Value)