summaryrefslogtreecommitdiff
path: root/src/mock_runtime_test.cc
AgeCommit message (Collapse)Author
2018-07-26Fix clang warning.Ryan Dahl
warning: comparison of integers of different signs: 'const unsigned long' and 'const int' [-Wsign-compare]
2018-07-24Allow deno_buf with null alloc_ptr to be memcpy'dRyan Dahl
This is a temporary hack to allow for easier restructuring of the serialization code as we move Flatbuffer stuff from C++ to Rust.
2018-07-24Add mock_runtime_test for deno_last_exception.Ryan Dahl
2018-07-24Change copyrights to be 'Deno authors'.Ryan Dahl
2018-07-18Fix warnings in mock_runtime_test.ccRyan Dahl
2018-07-13Move C++ test main function to its own file.Ryan Dahl
2018-07-12Move buffers between V8 and nativeBert Belder
* 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.
2018-07-06Remove channel parameter from deno_send/recv.Ryan Dahl
2018-07-06Rename deno.cc to binding.cc and other renames (#339)Faris Amali Alis
Fixes #336
2018-07-03Switch back to recv/send instead of pub/sub for low-level API.Ryan Dahl
2018-06-22Add onerror test to mock_runtime_test.ccRyan Dahl
2018-06-22Move `deno2` folder to `src` (#277)Tristan Marion