Root of the parser generator */
| 513 | |
| 514 | /* Root of the parser generator */ |
| 515 | Condition* generateCondition(const char* str) |
| 516 | { |
| 517 | Condition* c; |
| 518 | |
| 519 | scan(&str); |
| 520 | c = Connect(&str); |
| 521 | |
| 522 | if (!c || next != 0) |
| 523 | { |
| 524 | if (c) delete c; |
| 525 | return 0; |
| 526 | } |
| 527 | else return c; |
| 528 | } |
no test coverage detected