(byte[] b)
| 18 | static final int EOF = (-1 << 3); |
| 19 | |
| 20 | static MachineInput fromUTF8(byte[] b) { |
| 21 | return new UTF8Input(b); |
| 22 | } |
| 23 | |
| 24 | static MachineInput fromUTF8(byte[] b, int start, int end) { |
| 25 | return new UTF8Input(b, start, end); |
no outgoing calls
no test coverage detected