(BlockStatement block)
| 14 | public static final int CHUNKS_PER_CLASS = 50; |
| 15 | |
| 16 | public static List<BlockStatement> chunk(BlockStatement block) { |
| 17 | return chunk(block, CHUNK_LIMIT); |
| 18 | } |
| 19 | |
| 20 | public static List<BlockStatement> chunk(BlockStatement block, int chunkSize) { |
| 21 | int size = 0; |
no test coverage detected