| 179 | } |
| 180 | |
| 181 | void fxProxyGetter(txMachine* the) |
| 182 | { |
| 183 | txSlot* instance = fxToInstance(the, mxThis); |
| 184 | while (instance) { |
| 185 | if (mxIsProxy(instance)) |
| 186 | break; |
| 187 | instance = fxGetPrototype(the, instance); |
| 188 | } |
| 189 | if (instance) { |
| 190 | txID id = the->scratch.value.at.id; |
| 191 | txIndex index = the->scratch.value.at.index; |
| 192 | fxProxyGetPropertyValue(the, instance, id, index, mxThis, mxResult); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void fxProxySetter(txMachine* the) |
| 197 | { |
nothing calls this directly
no test coverage detected