(
targetMap: Map<string, Map<string, T[]>>,
actionTarget: dataform.ITarget,
value: T
)
| 652 | } |
| 653 | |
| 654 | private setBySchemaLevel( |
| 655 | targetMap: Map<string, Map<string, T[]>>, |
| 656 | actionTarget: dataform.ITarget, |
| 657 | value: T |
| 658 | ) { |
| 659 | if (!targetMap.has(actionTarget.schema)) { |
| 660 | targetMap.set(actionTarget.schema, new Map()); |
| 661 | } |
| 662 | const forSchema = targetMap.get(actionTarget.schema); |
| 663 | this.setByNameLevel(forSchema, actionTarget.name, value); |
| 664 | } |
| 665 | } |
no test coverage detected