| 2867 | } |
| 2868 | |
| 2869 | void fxDeclareNodeCodeReference(void* it, void* param, txFlag flag) |
| 2870 | { |
| 2871 | txAccessNode* self = it; |
| 2872 | txCoder* coder = param; |
| 2873 | txDeclareNode* declaration = self->declaration; |
| 2874 | if (!declaration) { |
| 2875 | if (coder->evalFlag) |
| 2876 | fxCoderAddSymbol(param, 1, XS_CODE_EVAL_REFERENCE, self->symbol); |
| 2877 | else |
| 2878 | fxCoderAddSymbol(param, 1, XS_CODE_PROGRAM_REFERENCE, self->symbol); |
| 2879 | } |
| 2880 | } |
| 2881 | |
| 2882 | void fxDefineNodeCode(void* it, void* param) |
| 2883 | { |
no test coverage detected