( P: ParseState, stop: string, mode: ArithMode = 'var', )
| 4123 | ]) |
| 4124 | |
| 4125 | function parseArithExpr( |
| 4126 | P: ParseState, |
| 4127 | stop: string, |
| 4128 | mode: ArithMode = 'var', |
| 4129 | ): TsNode | null { |
| 4130 | return parseArithTernary(P, stop, mode) |
| 4131 | } |
| 4132 | |
| 4133 | /** Top-level: comma-separated list. arithmetic_expansion emits multiple children. */ |
| 4134 | function parseArithCommaList( |
no test coverage detected