(script: ChibiJson<any>, startState: any = null)
| 23 | } |
| 24 | |
| 25 | run(script: ChibiJson<any>, startState: any = null) { |
| 26 | return this.getConsumer()._subroutine(script, startState); |
| 27 | } |
| 28 | |
| 29 | async runAsync(script: ChibiJson<any>, startState: any = null) { |
| 30 | if (!this.isAsync()) { |
no test coverage detected