(name)
| 376 | } |
| 377 | |
| 378 | _pluginIndex(name) { |
| 379 | let index = -1; |
| 380 | this.plugins.some(function(plugin, i) { |
| 381 | if (plugin.name === name) { |
| 382 | index = i; |
| 383 | return true; |
| 384 | } |
| 385 | }); |
| 386 | return index; |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * @param {Node} ast |
no outgoing calls
no test coverage detected