mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 20:09:04 +00:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
// ----- THIS IS NOT WEBCORE ----
|
|
// It reuses the namespace.
|
|
// ----- THIS IS NOT WEBCORE ----
|
|
|
|
// Node.js buffer
|
|
|
|
#include "root.h"
|
|
|
|
#include "Buffer.h"
|
|
#include "JavaScriptCore/Uint8Array.h"
|
|
|
|
namespace WebCore {
|
|
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, JSC::JSUint8Array* array, size_t byteOffset, size_t length)
|
|
{
|
|
return adoptRef(*new Buffer(globalObject, array, byteOffset, length));
|
|
}
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, JSC::JSUint8Array* array)
|
|
{
|
|
return create(globalObject, array, 0, array->byteLength());
|
|
}
|
|
|
|
int32_t static write(WTF::StringView view, size_t offset, size_t length, BufferEncodingType encodingType)
|
|
{
|
|
}
|
|
|
|
Buffer::~Buffer()
|
|
{
|
|
}
|
|
|
|
Ref<Buffer> Buffer::createEmpty(JSC::JSGlobalObject* globalObject)
|
|
{
|
|
return adoptRef(*new Buffer(globalObject, nullptr, 0, 0));
|
|
}
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, UChar* ptr, size_t len, BufferEncodingType encoding)
|
|
{
|
|
}
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, LChar* ptr, size_t len, BufferEncodingType encoding)
|
|
{
|
|
}
|
|
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, WTF::StringView& str, BufferEncodingType encoding)
|
|
{
|
|
if (str.is8Bit()) {
|
|
}
|
|
}
|
|
Ref<Buffer> Buffer::create(JSC::JSGlobalObject* globalObject, WTF::String& str, BufferEncodingType encoding)
|
|
{
|
|
}
|
|
|
|
} |