( s: string, i: number )
| 353 | } |
| 354 | |
| 355 | function expression( |
| 356 | s: string, |
| 357 | i: number |
| 358 | ): [index: number, result: Expression | null] { |
| 359 | let lhs: Expression | null; |
| 360 | [i, lhs] = primary(s, i); |
| 361 | return [i, lhs]; |
| 362 | } |
| 363 | |
| 364 | function parenth_form( |
| 365 | s: string, |
no test coverage detected