()
| 377 | } |
| 378 | } |
| 379 | get completeName() { |
| 380 | const index = this.findIndex(GAP.ADType.COMPLETE_LOCAL_NAME); |
| 381 | if (-1 != index) { |
| 382 | return this.#getStringType(index); |
| 383 | } |
| 384 | } |
| 385 | get shortName() { |
| 386 | const index = this.findIndex(GAP.ADType.SHORTENED_LOCAL_NAME); |
| 387 | if (-1 != index) |
nothing calls this directly
no test coverage detected