(map: Map<string, SelectorMatcher<T>>, name: string)
| 322 | } |
| 323 | |
| 324 | private _addPartial(map: Map<string, SelectorMatcher<T>>, name: string): SelectorMatcher<T> { |
| 325 | let matcher = map.get(name); |
| 326 | if (!matcher) { |
| 327 | matcher = new SelectorMatcher<T>(); |
| 328 | map.set(name, matcher); |
| 329 | } |
| 330 | return matcher; |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Find the objects that have been added via `addSelectable` |
no test coverage detected