| 764 | } |
| 765 | |
| 766 | class OutputVariableContainer implements IVariableContainer { |
| 767 | public readonly id = getVariableId(); |
| 768 | |
| 769 | constructor(private readonly child: Variable) {} |
| 770 | |
| 771 | public getChildren(): Promise<IVariable[]> { |
| 772 | return Promise.resolve([this.child]); |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | class OutputVariable extends Variable { |
| 777 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected