| 246 | #endif |
| 247 | |
| 248 | void fxRenameFunction(txMachine* the, txSlot* instance, txID id, txIndex index, txID former, txString prefix) |
| 249 | { |
| 250 | txSlot* property; |
| 251 | if (instance->flag & XS_MARK_FLAG) |
| 252 | return; |
| 253 | property = mxFunctionInstanceCode(instance); |
| 254 | if ((property->ID == XS_NO_ID) || (property->ID == former)) { |
| 255 | if (id != XS_NO_ID) |
| 256 | property->ID = (txID)id; |
| 257 | } |
| 258 | if (gxDefaults.newFunctionName) |
| 259 | property = gxDefaults.newFunctionName(the, instance, id, index, former, prefix); |
| 260 | } |
| 261 | |
| 262 | void fx_Function(txMachine* the) |
| 263 | { |
no outgoing calls
no test coverage detected