(targetMap: Map<string, T[]>, name: string, value: T)
| 645 | } |
| 646 | |
| 647 | private setByNameLevel(targetMap: Map<string, T[]>, name: string, value: T) { |
| 648 | if (!targetMap.has(name)) { |
| 649 | targetMap.set(name, []); |
| 650 | } |
| 651 | targetMap.get(name).push(value); |
| 652 | } |
| 653 | |
| 654 | private setBySchemaLevel( |
| 655 | targetMap: Map<string, Map<string, T[]>>, |
no test coverage detected