go/ast.SendStmt.Value (field)

7 uses

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

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

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

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