(l, r *types.T)
| 197 | } |
| 198 | |
| 199 | func (op *BinOp) matchParams(l, r *types.T) bool { |
| 200 | return op.params().MatchAt(l, 0) && op.params().MatchAt(r, 1) |
| 201 | } |
| 202 | |
| 203 | func (op *BinOp) returnType() ReturnTyper { |
| 204 | return op.retType |
no test coverage detected