| 145 | } |
| 146 | |
| 147 | txSlot* fxGetPrototype(txMachine* the, txSlot* instance) |
| 148 | { |
| 149 | txSlot* prototype = instance->value.instance.prototype; |
| 150 | #if mxAliasInstance |
| 151 | if (prototype) { |
| 152 | if (prototype->ID) { |
| 153 | txSlot* alias = the->aliasArray[prototype->ID]; |
| 154 | if (alias) |
| 155 | prototype = alias; |
| 156 | } |
| 157 | } |
| 158 | #endif |
| 159 | return prototype; |
| 160 | } |
| 161 | |
| 162 | txSlot* fxNewInstance(txMachine* the) |
| 163 | { |
no outgoing calls
no test coverage detected