| 121 | } |
| 122 | |
| 123 | txInteger fxGetArrayBufferLength(txMachine* the, txSlot* slot) |
| 124 | { |
| 125 | txSlot* instance = fxCheckArrayBufferInstance(the, slot); |
| 126 | txSlot* arrayBuffer = instance->next; |
| 127 | txSlot* bufferInfo = arrayBuffer->next; |
| 128 | return bufferInfo->value.bufferInfo.length; |
| 129 | } |
| 130 | |
| 131 | txInteger fxGetArrayBufferMaxLength(txMachine* the, txSlot* slot) |
| 132 | { |
no test coverage detected