mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
24b0e91d80
* send()/recv() now operate on TypedArrays rather than ArrayBuffers. * Remove a copy (through ArrayBuffer.slice()) from the send path. * Remove a copy (through v8::ArrayBuffer::New()) from the return path. * After moving a buffer from JS to native, the ArrayBuffer object and it's views are made inaccessible ('neutered'). * `struct deno_buf` now holds two [ptr, length] tuples, one for the actual memory allocation, and one for the logical data contained therein. This is necessary because flatbuffers fills it's buffer bottom-up, so the serialized blob doesn't start at beginning of the buffer, but somewhere in the middle. |
||
---|---|---|
.. | ||
console.ts | ||
deno.d.ts | ||
deno.ts | ||
dispatch.ts | ||
fetch.ts | ||
globals.ts | ||
main.ts | ||
mock_runtime.js | ||
msg_generated.ts | ||
os.ts | ||
runtime.ts | ||
tests.ts | ||
text-encoding.d.ts | ||
timers.ts | ||
types.ts | ||
util.ts | ||
v8_source_maps.ts |