* Capability map derived automatically from method overrides at runtime. * Exchanges do NOT need to declare this manually -- if a subclass overrides * a method (and the override does not throw "not supported"), it is `true`. * To mark a capability as `'emulated'`, add its key to `emul
()
| 449 | * To mark a capability as `'emulated'`, add its key to `emulatedCapabilities`. |
| 450 | */ |
| 451 | get has(): ExchangeHas { |
| 452 | if (!this._has) { |
| 453 | this._has = this._deriveCapabilities(); |
| 454 | } |
| 455 | return this._has; |
| 456 | } |
| 457 | private _has?: ExchangeHas; |
| 458 | |
| 459 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected