| 1925 | } |
| 1926 | |
| 1927 | void fxEndHost(txMachine* the) |
| 1928 | { |
| 1929 | if (the->frame->next == C_NULL) { |
| 1930 | fxEndJob(the); |
| 1931 | } |
| 1932 | the->stack = the->frame + 4; |
| 1933 | the->scope = the->frame->value.frame.scope; |
| 1934 | the->code = the->frame->value.frame.code; |
| 1935 | the->frame = the->frame->next; |
| 1936 | } |
| 1937 | |
| 1938 | void fxEndJob(txMachine* the) |
| 1939 | { |
no test coverage detected