()
| 167 | } |
| 168 | |
| 169 | export function commitInputConfigurationRegistration(): void { |
| 170 | if (stagedConfigureFactory === undefined) { |
| 171 | return; |
| 172 | } |
| 173 | configureFactory = stagedConfigureFactory; |
| 174 | stagedConfigureFactory = undefined; |
| 175 | evaluateConfigureFactory(true); |
| 176 | } |
| 177 | |
| 178 | export function takePendingInputConfig(): InputConfigDraft | undefined { |
| 179 | if (!pendingInputConfig) { |
no test coverage detected