| 1931 | } |
| 1932 | |
| 1933 | void fxScopeCodeUsingStatement(txScope* self, txCoder* coder, txNode* statement) |
| 1934 | { |
| 1935 | if (self->disposableNodeCount) { |
| 1936 | txUsingContext context; |
| 1937 | fxScopeCodeUsing(self, coder, &context); |
| 1938 | fxNodeDispatchCode(statement, coder); |
| 1939 | fxScopeCodeUsed(self, coder, &context); |
| 1940 | } |
| 1941 | else |
| 1942 | fxNodeDispatchCode(statement, coder); |
| 1943 | } |
| 1944 | |
| 1945 | void fxNodeDispatchCode(void* it, void* param) |
| 1946 | { |
no test coverage detected