| 6593 | |
| 6594 | #if 0 |
| 6595 | void iiReportMethods(int args, int iiOp, char* cmd) |
| 6596 | { |
| 6597 | if (iiOp!=0) |
| 6598 | { |
| 6599 | int i=0; |
| 6600 | const char*s =iiTwoOps(iiOp); |
| 6601 | if (args==1) |
| 6602 | { |
| 6603 | while ((dArith1[i].cmd)!=0) |
| 6604 | { |
| 6605 | if (dArith1[i].cmd==iiOp) |
| 6606 | { |
| 6607 | Print(" %s (%s) -> %s", |
| 6608 | s, |
| 6609 | Tok2Cmdname(dArith1[i].arg), |
| 6610 | Tok2Cmdname(dArith1[i].res)); |
| 6611 | } |
| 6612 | i++; |
| 6613 | } |
| 6614 | } |
| 6615 | else if (args==2) |
| 6616 | { |
| 6617 | |
| 6618 | } |
| 6619 | } |
| 6620 | } |
| 6621 | #endif |
| 6622 | |
| 6623 | void iiSetReturn(const leftv source) |
nothing calls this directly
no test coverage detected