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