| 1963 | } |
| 1964 | |
| 1965 | void fxNodeDispatchCodeDelete(void* it, void* param) |
| 1966 | { |
| 1967 | txNode* self = it; |
| 1968 | txCoder* coder = param; |
| 1969 | fxCheckParserStack(coder->parser, self->line); |
| 1970 | if (self->line >= 0) |
| 1971 | fxCoderAddLine(coder, 0, XS_CODE_LINE, self); |
| 1972 | (*self->description->dispatch->codeDelete)(self, param); |
| 1973 | } |
| 1974 | |
| 1975 | void fxNodeDispatchCodeReference(void* it, void* param, txFlag flag) |
| 1976 | { |
no test coverage detected