| 129 | } |
| 130 | |
| 131 | txInteger fxGetArrayBufferMaxLength(txMachine* the, txSlot* slot) |
| 132 | { |
| 133 | txSlot* instance = fxCheckArrayBufferInstance(the, slot); |
| 134 | txSlot* arrayBuffer = instance->next; |
| 135 | txSlot* bufferInfo = arrayBuffer->next; |
| 136 | return bufferInfo->value.bufferInfo.maxLength; |
| 137 | } |
| 138 | |
| 139 | void fxSetArrayBufferData(txMachine* the, txSlot* slot, txInteger byteOffset, void* data, txInteger byteLength) |
| 140 | { |
nothing calls this directly
no test coverage detected