(name)
| 198 | } |
| 199 | |
| 200 | _instrumentationFor(name) { |
| 201 | let instr = this.instrumentations[name]; |
| 202 | if (!instr) { |
| 203 | throw new Error(`No such instrumentation "${name}"`); |
| 204 | } |
| 205 | return instr; |
| 206 | } |
| 207 | |
| 208 | _instrumentationTreeFor(name) { |
| 209 | return heimdallGraph.loadFromNode(this.instrumentations[name].node); |
no outgoing calls
no test coverage detected