(time)
| 4964 | const AsyncFunction = Object.getPrototypeOf(async function(){}).constructor; |
| 4965 | |
| 4966 | async function sleep(time) { |
| 4967 | await new Promise((resolve) => { |
| 4968 | setTimeout(() => { |
| 4969 | resolve(); |
| 4970 | }, time); |
| 4971 | }); |
| 4972 | } |
| 4973 | |
| 4974 | class RuleParser { |
| 4975 | constructor() { |
no test coverage detected