( choiceExecutor: IChoiceExecutor, variables: Record<string, unknown>, )
| 320 | } |
| 321 | |
| 322 | function setExecutorVariables( |
| 323 | choiceExecutor: IChoiceExecutor, |
| 324 | variables: Record<string, unknown>, |
| 325 | ) { |
| 326 | for (const [key, value] of Object.entries(variables)) { |
| 327 | choiceExecutor.variables.set(key, value); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | function describeChoice(choice: IChoice) { |
| 332 | return { |
no test coverage detected