( config: ExecutionEngineConfig<E>, )
| 163 | }); |
| 164 | |
| 165 | export const createExecutionEngine = <E extends Cause.YieldableError = CodeExecutionError>( |
| 166 | config: ExecutionEngineConfig<E>, |
| 167 | ): ExecutionEngine => |
| 168 | toPromiseExecutionEngine( |
| 169 | createEffectExecutionEngine({ |
| 170 | executor: wrapPromiseExecutor(config.executor), |
| 171 | codeExecutor: config.codeExecutor, |
| 172 | }), |
| 173 | ); |
| 174 | |
| 175 | // --------------------------------------------------------------------------- |
| 176 | // Re-exports — plain types/helpers that don't carry Effect signatures. |
nothing calls this directly
no test coverage detected