()
| 1085 | } |
| 1086 | |
| 1087 | get port() { |
| 1088 | if (this.#context.hasPort) { |
| 1089 | return `${this.#context.port}`; |
| 1090 | } |
| 1091 | return ''; |
| 1092 | } |
| 1093 | |
| 1094 | set port(value) { |
| 1095 | const href = bindingUrl.update(this.#context.href, updateActions.kPort, `${value}`); |
nothing calls this directly
no test coverage detected