0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-24 15:19:31 -05:00
denoland-rusty-v8/src
Matt Mastracci 672254e113
feat: Fix is_onebyte and add an uninit write for onebyte (#1255)
Some fixes around one-byte strings:

 - `is_onebyte` was calling the wrong v8 API.
 - We didn't have a way to write one-byte strings with uninitialized buffers
 - (bonus) The test_string method was quite slow making testing a bit of a pain
2023-06-26 09:30:16 -06:00
..
array_buffer.rs ArrayBuffer: add binding for IsResizableByUserJavaScript (#1205) 2023-03-27 19:33:58 +02:00
array_buffer_view.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
bigint.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
binding.cc feat(fastcall): Int64Representation (#1238) 2023-06-02 11:28:14 -06:00
context.rs feat: Add the option to disable generation from strings (#1222) 2023-04-30 12:29:40 +02:00
data.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
date.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
exception.rs feat: Add v8::StackTrace::current_script_name_or_source_url (#1211) 2023-04-21 19:09:56 +02:00
external.rs chore: update to Rust 1.66.0 (#1156) 2022-12-21 00:11:23 +01:00
external_references.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
fast_api.rs feat(fastcall): Int64Representation (#1238) 2023-06-02 11:28:14 -06:00
fixed_array.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
function.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
gc.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
get_property_names_args_builder.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
handle.rs Update and improve documentation about finalizers (#1182) 2023-02-02 11:45:22 +00:00
icu.rs deps: upgrade ICU to 72-1 (#1160) 2022-12-18 22:55:12 +01:00
inspector.rs Avoid referencing uninitalized in Inspector API (#1164) 2023-01-15 20:00:38 +05:30
isolate.rs chore: support 128-bit TypeId (#1249) 2023-06-15 19:00:42 +02:00
isolate_create_params.rs feat: Add v8::CreateParams::has_set_array_buffer_allocator (#1232) 2023-05-22 12:33:17 +00:00
json.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
lib.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
module.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
name.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
number.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
object.rs Add more Object methods (#1240) 2023-05-25 13:04:50 +00:00
platform.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
primitive_array.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
primitives.rs use Isolate for creating primitives (#1082) 2022-10-06 20:44:16 +02:00
private.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
promise.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
property_attribute.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
property_descriptor.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
property_filter.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
property_handler_flags.rs Improved ObjectTemplate::set_*_handlers (#1237) 2023-05-26 13:14:18 +02:00
proxy.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
scope.rs refactor: Move set_promise_hooks API to HandleScope (#1186) 2023-02-09 20:38:25 +01:00
script.rs test: Add tests showing incorrect exception behavior in debug build (#1227) 2023-05-12 02:46:42 +02:00
script_compiler.rs Fix build for v11.4 (#1218) 2023-04-27 01:03:54 +02:00
script_or_module.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
shared_array_buffer.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
snapshot.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
string.rs feat: Fix is_onebyte and add an uninit write for onebyte (#1255) 2023-06-26 09:30:16 -06:00
support.h Run clang-format (#582) 2021-01-11 19:38:20 -08:00
support.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
symbol.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
template.rs feat(fastcall): Int64Representation (#1238) 2023-06-02 11:28:14 -06:00
typed_array.rs feat: Add v8::TypedArray::length (#1166) 2023-01-08 15:11:19 +01:00
unbound_module_script.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
unbound_script.rs Inline API functions (#1078) 2022-09-21 08:15:33 +05:30
V8.rs refactor: migrate from lazy_static to once_cell (#1210) 2023-04-21 15:01:27 +05:30
value.rs feat: Add the option to disable generation from strings (#1222) 2023-04-30 12:29:40 +02:00
value_deserializer.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
value_serializer.rs chore: update Rust to 1.65.0 (#1116) 2022-11-25 14:32:52 +01:00
wasm.rs Add WasmMemoryObject::buffer method (#1128) 2022-11-23 21:44:37 +05:30