(op: string)
| 1350 | const args = expr.args; |
| 1351 | |
| 1352 | const logicalLabel = (op: string) => { |
| 1353 | if (op === "_&&_") return "and"; |
| 1354 | if (op === "_||_") return "or"; |
| 1355 | return op; |
| 1356 | }; |
| 1357 | |
| 1358 | const addCondition = () => { |
| 1359 | const factor = factorList[0]; |