(name, instrumentationInfo)
| 210 | } |
| 211 | |
| 212 | _invokeAddonHook(name, instrumentationInfo) { |
| 213 | if (this.project && this.project.addons.length) { |
| 214 | this.project.addons.forEach((addon) => { |
| 215 | if (typeof addon.instrumentation === 'function') { |
| 216 | addon.instrumentation(name, instrumentationInfo); |
| 217 | } |
| 218 | }); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | _writeInstrumentation(name, instrumentationInfo) { |
| 223 | if (!vizEnabled()) { |