(array: TokenT[])
| 273 | } |
| 274 | |
| 275 | removeEmpty(array: TokenT[]): TokenT[] { |
| 276 | const ret: TokenT[] = []; |
| 277 | for (let i = 0; i < array.length; i++) { |
| 278 | if (array[i]) { |
| 279 | ret.push(array[i]); |
| 280 | } |
| 281 | } |
| 282 | return ret; |
| 283 | } |
| 284 | |
| 285 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 286 | castInput(value: InputValueT, options: AllDiffOptions): ValueT { |
no outgoing calls
no test coverage detected