xiaoas
How to use set_internal_field of rusty v8?
After checking the process demo it seems that
set_internal_field_count
was called, but no actual value was set.
So I'm wondering
1. is it possible to use this feature in rusty_v8?
2. In the cpp example SetNativeDataProperty
& SetHandler(NamedPropertyHandlerConfiguration(MapGet, MapSet))
were used. Is it possible to do the same in rusty_v8?2 replies
Following deno_core code execution is slower
So I have the following code, which is taken from https://github.com/denoland/deno/tree/main/core/examples and edited for simple benchmarking:
Which outputs the following:
the second run seems to be significantly slower than the first. Is this a performance bug? Or am I using the runtime incorrectly?
1 replies