(operations: EditStateOperation[] | undefined, editLocIndex: ParseContext['editLocIndex'])
| 174 | } |
| 175 | |
| 176 | function processEditOperations(operations: EditStateOperation[] | undefined, editLocIndex: ParseContext['editLocIndex']): void { |
| 177 | for (const op of (operations || [])) { |
| 178 | processEditOperation(op, editLocIndex); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | function parseEditStateFile(stateFile: string, editLocIndex: ParseContext['editLocIndex']): void { |
| 183 | let raw: string; |
no test coverage detected