(state)
| 42 | } |
| 43 | |
| 44 | function setCLS(state) { |
| 45 | const resource = executionAsyncResource(); |
| 46 | if (!resource[cls]) { |
| 47 | resource[cls] = { state }; |
| 48 | } else { |
| 49 | resource[cls].state = state; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | function init(asyncId, type, triggerAsyncId, resource) { |
| 54 | const cr = executionAsyncResource(); |
no test coverage detected