Handle || and && operators */
| 507 | |
| 508 | /* Handle || and && operators */ |
| 509 | static Condition* Connect(const char** str) |
| 510 | { |
| 511 | return InfixOperator(str, Compare, ConnectOperators); |
| 512 | } |
| 513 | |
| 514 | /* Root of the parser generator */ |
| 515 | Condition* generateCondition(const char* str) |
no test coverage detected