(...args)
| 49 | } |
| 50 | |
| 51 | getPort(...args) { |
| 52 | for (const portName in this.ports) { |
| 53 | if (args.some(name => portName.includes(name))) { |
| 54 | return this.ports[portName]; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | removePort(port) { |
| 60 | const view = parseViewName(port.name); |
no outgoing calls
no test coverage detected