Parse a statement node.
| 1588 | |
| 1589 | // Parse a statement node. |
| 1590 | StmtNode* PAR_parse_stmt(thread_db* tdbb, CompilerScratch* csb) |
| 1591 | { |
| 1592 | DmlNode* node = PAR_parse_node(tdbb, csb); |
| 1593 | |
| 1594 | if (node->getKind() != DmlNode::KIND_STATEMENT) |
| 1595 | PAR_syntax_error(csb, "statement"); |
| 1596 | |
| 1597 | return static_cast<StmtNode*>(node); |
| 1598 | } |
| 1599 | |
| 1600 | // Parse a BLR node. |
| 1601 | DmlNode* PAR_parse_node(thread_db* tdbb, CompilerScratch* csb) |
no test coverage detected