Function
scopeUnsafeMake
(
strategy: ExecutionStrategy.ExecutionStrategy = executionStrategy.sequential
)
Source from the content-addressed store, hash-verified
| 3304 | } |
| 3305 | |
| 3306 | const scopeUnsafeMake = ( |
| 3307 | strategy: ExecutionStrategy.ExecutionStrategy = executionStrategy.sequential |
| 3308 | ): ScopeImpl => { |
| 3309 | const scope = Object.create(ScopeImplProto) |
| 3310 | scope.strategy = strategy |
| 3311 | scope.state = { _tag: "Open", finalizers: new Map() } |
| 3312 | return scope |
| 3313 | } |
| 3314 | |
| 3315 | /* @internal */ |
| 3316 | export const scopeMake = ( |
Tested by
no test coverage detected