| 1777 | // |
| 1778 | |
| 1779 | static act* par_end_fetch() |
| 1780 | { |
| 1781 | if (!cur_fetch) |
| 1782 | PAR_error("END_FETCH used out of context"); |
| 1783 | |
| 1784 | act* begin_action = (act*) MSC_pop(&cur_fetch); |
| 1785 | |
| 1786 | act* action = MSC_action(begin_action->act_request, ACT_hctef); |
| 1787 | begin_action->act_pair = action; |
| 1788 | action->act_pair = begin_action; |
| 1789 | |
| 1790 | PAR_end(); |
| 1791 | return action; |
| 1792 | } |
| 1793 | |
| 1794 | |
| 1795 | //____________________________________________________________ |
no test coverage detected