(name, path, pkg)
| 9 | |
| 10 | class AddonInfo { |
| 11 | constructor(name, path, pkg) { |
| 12 | this.name = name; |
| 13 | this.path = path; |
| 14 | this.pkg = pkg; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | module.exports = AddonInfo; |
nothing calls this directly
no outgoing calls
no test coverage detected