| 1312 | } |
| 1313 | |
| 1314 | static void compileThreewayComp(Token *&tok, AST_state& state) |
| 1315 | { |
| 1316 | compileShift(tok, state); |
| 1317 | while (tok) { |
| 1318 | if (tok->str() == "<=>") { |
| 1319 | compileBinOp(tok, state, compileShift); |
| 1320 | } else break; |
| 1321 | } |
| 1322 | } |
| 1323 | |
| 1324 | static void compileRelComp(Token *&tok, AST_state& state) |
| 1325 | { |
no test coverage detected