| 190 | } |
| 191 | |
| 192 | void fxScopeArrow(txScope* self) |
| 193 | { |
| 194 | if (self->token == XS_TOKEN_EVAL) { |
| 195 | } |
| 196 | else if (self->token == XS_TOKEN_FUNCTION) { |
| 197 | if (self->node->flags & mxArrowFlag) { |
| 198 | self->node->flags |= mxDefaultFlag; |
| 199 | if (self->scope) |
| 200 | fxScopeArrow(self->scope); |
| 201 | } |
| 202 | } |
| 203 | else if (self->token == XS_TOKEN_PROGRAM) { |
| 204 | } |
| 205 | else if (self->scope) { |
| 206 | fxScopeArrow(self->scope); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | void fxScopeBindDefineNodes(txScope* self, void* param) |
| 211 | { |
no outgoing calls
no test coverage detected