R=rsc
DELTA=4 (0 added, 0 deleted, 4 changed)
OCL=23896
CL=23928
type binOp (a, b int) int;
func run(op *binOp, req *request) {
- result := op(req.a, req.b);
- req.replyc <- result;
+ reply := op(req.a, req.b);
+ req.replyc <- reply;
}
func server(op *binOp, service chan *request) {
type binOp (a, b int) int;
func run(op *binOp, req *request) {
- result := op(req.a, req.b);
- req.replyc <- result;
+ reply := op(req.a, req.b);
+ req.replyc <- reply;
}
func server(op *binOp, service chan *request, quit chan bool) {