( P: ParseState, stop: string, mode: ArithMode = 'var', )
| 4129 | ]) |
| 4130 | |
| 4131 | function parseArithExpr( |
| 4132 | P: ParseState, |
| 4133 | stop: string, |
| 4134 | mode: ArithMode = 'var', |
| 4135 | ): TsNode | null { |
| 4136 | return parseArithTernary(P, stop, mode) |
| 4137 | } |
| 4138 | |
| 4139 | /** Top-level: comma-separated list. arithmetic_expansion emits multiple children. */ |
| 4140 | function parseArithCommaList( |
no test coverage detected