| 837 | // |
| 838 | |
| 839 | void PAR_fini() |
| 840 | { |
| 841 | if (cur_for) |
| 842 | CPR_error("unterminated FOR statement"); |
| 843 | |
| 844 | if (cur_modify) |
| 845 | CPR_error("unterminated MODIFY statement"); |
| 846 | |
| 847 | if (cur_store) |
| 848 | CPR_error("unterminated STORE statement"); |
| 849 | |
| 850 | if (cur_error) |
| 851 | CPR_error("unterminated ON_ERROR clause"); |
| 852 | |
| 853 | if (cur_item) |
| 854 | CPR_error("unterminated ITEM statement"); |
| 855 | } |
| 856 | |
| 857 | |
| 858 | //____________________________________________________________ |
no test coverage detected