(int codepoint, Version version, CodeExtract ex)
| 348 | } |
| 349 | |
| 350 | public static String defaultToString(int codepoint, Version version, CodeExtract ex) { |
| 351 | return toStringHelper(String.format("op%02d", ex.op.extract(codepoint)), version.getDefaultOp().operands, codepoint, ex, null); |
| 352 | } |
| 353 | |
| 354 | private static String toStringHelper(String name, OperandFormat[] operands, int codepoint, CodeExtract ex, String label) { |
| 355 | int width = 10; |
no test coverage detected