(float aw, float ac, String text)
| 143 | public void op_squote(String text) { System.out.println(formatString(text, " '")); } |
| 144 | public void op_squote(byte[] array) { System.out.println(formatByteArray(array, " '")); } |
| 145 | public void op_dquote(float aw, float ac, String text) { System.out.println(aw + " " + ac + " " + formatString(text, " \"")); } |
| 146 | public void op_dquote(float aw, float ac, byte[] array) { System.out.println(aw + " " + ac + " " + " " + formatByteArray(array, " \"")); } |
| 147 | |
| 148 | public void op_d0(float wx, float wy) { System.out.println(wx + " " + wy + " d0"); } |
no test coverage detected