(code: string)
| 202 | } |
| 203 | |
| 204 | function evalCode(code: string) { |
| 205 | const result = appendCompileAndEvalInput({ |
| 206 | service: service!, |
| 207 | state, |
| 208 | input: code, |
| 209 | context, |
| 210 | overrideIsCompletion: false, |
| 211 | }); |
| 212 | assert(result.containsTopLevelAwait === false); |
| 213 | return result.value; |
| 214 | } |
| 215 | |
| 216 | function evalCodeInternal(options: { |
| 217 | code: string; |
no test coverage detected
searching dependent graphs…