()
| 1129 | } |
| 1130 | |
| 1131 | void moveTo() { |
| 1132 | interp.getLeftParen(); |
| 1133 | int a1 = (int)Math.round(interp.getExpression()); |
| 1134 | interp.getComma(); |
| 1135 | int a2 = (int)Math.round(interp.getExpression()); |
| 1136 | interp.getRightParen(); |
| 1137 | getProcessor().moveTo(a1, a2); |
| 1138 | } |
| 1139 | |
| 1140 | void lineTo() { |
| 1141 | interp.getLeftParen(); |
no test coverage detected