(addon)
| 43 | } |
| 44 | |
| 45 | function findHost(addon) { |
| 46 | var current = addon; |
| 47 | var app; |
| 48 | |
| 49 | do { |
| 50 | app = current.app || app; |
| 51 | } while (current.parent.parent && (current = current.parent)); |
| 52 | |
| 53 | return app; |
| 54 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…