()
| 100 | |
| 101 | /* Add previous block(if exists) before start a new file */ |
| 102 | function saveBlock(): void { |
| 103 | if (currentBlock !== null && currentFile !== null) { |
| 104 | currentFile.blocks.push(currentBlock); |
| 105 | currentBlock = null; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * Add previous file(if exists) before start a new one |
no outgoing calls
no test coverage detected
searching dependent graphs…