(port, eventCache)
| 25 | } |
| 26 | |
| 27 | initMainPort(port, eventCache) { |
| 28 | const sender = parseViewName(port.name); |
| 29 | this.mainType = sender.type; |
| 30 | this.id = sender.id; |
| 31 | this.ports[this.mainType] = this; |
| 32 | eventCache?.flush(this); |
| 33 | } |
| 34 | |
| 35 | addPort(port, eventCache) { |
| 36 | const {type} = parseViewName(port.name); |
no test coverage detected