()
| 887 | } |
| 888 | |
| 889 | function constructInputIds(): string[] { |
| 890 | let result: string[] = []; |
| 891 | for (let inputName in INPUTS) { |
| 892 | if (state[inputName]) { |
| 893 | result.push(inputName); |
| 894 | } |
| 895 | } |
| 896 | return result; |
| 897 | } |
| 898 | |
| 899 | function constructInput(x: number, y: number): number[] { |
| 900 | let input: number[] = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…