| 1392 | } |
| 1393 | |
| 1394 | txSlot* fxTypedArraySetProperty(txMachine* the, txSlot* instance, txID id, txIndex index, txFlag flag) |
| 1395 | { |
| 1396 | if ((!id) || fxIsCanonicalIndex(the, id)) { |
| 1397 | the->scratch.value.at.id = id; |
| 1398 | the->scratch.value.at.index = index; |
| 1399 | return &mxTypedArrayAccessor; |
| 1400 | } |
| 1401 | return fxOrdinarySetProperty(the, instance, id, index, flag); |
| 1402 | } |
| 1403 | |
| 1404 | txBoolean fxTypedArraySetPropertyValue(txMachine* the, txSlot* instance, txID id, txIndex index, txSlot* value, txSlot* receiver) |
| 1405 | { |
nothing calls this directly
no test coverage detected