()
| 238 | |
| 239 | export function beginOutputConfigurationRegistration(): void { |
| 240 | stagedConfigureFactory = null; |
| 241 | } |
| 242 | |
| 243 | export function commitOutputConfigurationRegistration(): void { |
| 244 | if (stagedConfigureFactory === undefined) { |
| 245 | return; |
| 246 | } |
| 247 | configureFactory = stagedConfigureFactory; |
| 248 | stagedConfigureFactory = undefined; |
| 249 | evaluateConfigureFactory(true); |
| 250 | } |
no test coverage detected