python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to convert a v8::Local<v8::Value> into a uint32_t
Given the following code how can I convert the v8::Local<v8::Value> into a uint32_t. Or other types based on the Is* method?
v8::Local<v8::Value> value;
v8::Local<v8::Context> contex...
bshort
Votes: 0
Answers: 1
How to get actual invocation count of a optimized function in V8
Every function has a property invocation_count in FeedbackVector to record the number of times the function was called. But after a function is optimized, its invocation count will not be increased wh...
unicornt
Votes: 0
Answers: 1
Maximum call stack size exceeded for large iterators
I'm trying to convert an iterator to an array. The iterator is the result of calling matchAll on a very long string. The iterator (I assume) has many matches within the string. First I tried it with t...
Infamous911
Votes: 0
Answers: 1
What microtasks are enqueued with a Promise that resolves with a Promise in JavaScript?
I am trying to understand what microtask get enqueued when a Promise is resolved with another Promise.
For example, what microtasks are enqueued with the following code?
const p1 = Promise.resolve(&qu...
Fedy2
Votes: 0
Answers: 1