| 2090 | // |
| 2091 | |
| 2092 | static act* par_fetch() |
| 2093 | { |
| 2094 | gpre_sym* symbol = gpreGlob.token_global.tok_symbol; |
| 2095 | if (!symbol || symbol->sym_type != SYM_stream) |
| 2096 | return NULL; |
| 2097 | |
| 2098 | gpre_req* request = (gpre_req*) symbol->sym_object; |
| 2099 | PAR_get_token(); |
| 2100 | PAR_end(); |
| 2101 | |
| 2102 | act* action = MSC_action(request, ACT_s_fetch); |
| 2103 | MSC_push((gpre_nod*) action, &cur_fetch); |
| 2104 | |
| 2105 | return action; |
| 2106 | } |
| 2107 | |
| 2108 | |
| 2109 | //____________________________________________________________ |
no test coverage detected