(handle)
| 174 | |
| 175 | class InternalSocketAddress { |
| 176 | constructor(handle) { |
| 177 | markTransferMode(this, true, false); |
| 178 | |
| 179 | this[kHandle] = handle; |
| 180 | this[kDetail] = this[kHandle]?.detail({ |
| 181 | address: undefined, |
| 182 | port: undefined, |
| 183 | family: undefined, |
| 184 | flowlabel: undefined, |
| 185 | }); |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | InternalSocketAddress.prototype.constructor = |
nothing calls this directly
no test coverage detected