(key)
| 214 | } |
| 215 | |
| 216 | setRuntimeFn(key) { |
| 217 | if (this.runtimeIncludes(key, 'runtime')) return; |
| 218 | const rf = Runtime[key]; |
| 219 | rf.module = RUNTIME_MODULE; |
| 220 | rf.type = 'runtime'; |
| 221 | this.runtime[key] = rf; |
| 222 | } |
| 223 | |
| 224 | setFormatter(key) { |
| 225 | if (this.runtimeIncludes(key, 'formatter')) return; |
no test coverage detected