(lowMem bool)
| 117 | } |
| 118 | |
| 119 | func newBlockDec(lowMem bool) *blockDec { |
| 120 | b := blockDec{ |
| 121 | lowMem: lowMem, |
| 122 | } |
| 123 | return &b |
| 124 | } |
| 125 | |
| 126 | // reset will reset the block. |
| 127 | // Input must be a start of a block and will be at the end of the block when returned. |
no outgoing calls
no test coverage detected
searching dependent graphs…