Whether there are queued up change to be emitted.
()
| 255 | |
| 256 | /** Whether there are queued up change to be emitted. */ |
| 257 | private _hasQueuedChanges() { |
| 258 | return !!(this._deselectedToEmit.length || this._selectedToEmit.length); |
| 259 | } |
| 260 | |
| 261 | /** Returns a value that is comparable to inputValue by applying compareWith function, returns the same inputValue otherwise. */ |
| 262 | private _getConcreteValue(inputValue: T, selection?: Set<T>): T { |
no outgoing calls
no test coverage detected