| 1978 | // |
| 1979 | |
| 1980 | static void gen_estore( const act* action, int column) |
| 1981 | { |
| 1982 | const gpre_req* request = action->act_request; |
| 1983 | |
| 1984 | // if we did a store ... returning_values aka store2 |
| 1985 | // just wrap up pending error and return |
| 1986 | |
| 1987 | if (request->req_type == REQ_store2) |
| 1988 | { |
| 1989 | if (action->act_error) |
| 1990 | endp(column); |
| 1991 | return; |
| 1992 | } |
| 1993 | |
| 1994 | if (action->act_error) |
| 1995 | column += INDENT; |
| 1996 | |
| 1997 | align(column); |
| 1998 | gen_start(action, request->req_primary, column, true); |
| 1999 | |
| 2000 | if (action->act_error) |
| 2001 | endp(column); |
| 2002 | } |
| 2003 | |
| 2004 | |
| 2005 | //____________________________________________________________ |
no test coverage detected