| 126 | #endif |
| 127 | |
| 128 | void fxIncludeTree(txParser* parser, void* stream, txGetter getter, txUnsigned flags, txString path) |
| 129 | { |
| 130 | txParserJump jump; |
| 131 | txSymbol* symbol = parser->path; |
| 132 | jump.nextJump = parser->firstJump; |
| 133 | parser->firstJump = &jump; |
| 134 | if (c_setjmp(jump.jmp_buf) == 0) { |
| 135 | parser->path = fxNewParserSymbol(parser, path); |
| 136 | fxParserTree(parser, stream, getter, flags, C_NULL); |
| 137 | } |
| 138 | parser->firstJump = jump.nextJump; |
| 139 | parser->path = symbol; |
| 140 | } |
| 141 | |
| 142 | void fxCheckFunction(txParser* parser) |
| 143 | { |
nothing calls this directly
no test coverage detected