| 1322 | } |
| 1323 | |
| 1324 | txSlot* fxTypedArrayGetProperty(txMachine* the, txSlot* instance, txID id, txIndex index, txFlag flag) |
| 1325 | { |
| 1326 | if ((!id) || fxIsCanonicalIndex(the, id)) { |
| 1327 | the->scratch.value.at.id = id; |
| 1328 | the->scratch.value.at.index = index; |
| 1329 | return &mxTypedArrayAccessor; |
| 1330 | } |
| 1331 | return fxOrdinaryGetProperty(the, instance, id, index, flag); |
| 1332 | } |
| 1333 | |
| 1334 | txBoolean fxTypedArrayGetPropertyValue(txMachine* the, txSlot* instance, txID id, txIndex index, txSlot* receiver, txSlot* value) |
| 1335 | { |
nothing calls this directly
no test coverage detected