Re: [v8-dev] How to Use ES6 Modules When Embedding V8

2021-07-28 Thread 'Cisco Ortega' via v8-dev
Thank you! On Wednesday, July 28, 2021 at 2:48:15 PM UTC+8 ne...@google.com wrote: > On Tue, Jul 27, 2021 at 7:22 AM 'Cisco Ortega' via v8-dev > wrote: > > The only source for using modules seems to be this Stack Overflow post > here: >

[v8-dev] Re: Version Bumps of V8 v/s Chromium

2021-07-28 Thread 'Suraj Sharma' via v8-dev
Hello Michael Thanks for the response. Sure, I'm working on improving the release process for Edge; was interested to know how chromium is able to do it so efficiently. Then I came across this peculiar tagging model for V8 and got curious to know the reasoning behind it :D Thanks Suraj On

Re: [v8-dev] Getting currently executing script from microtask

2021-07-28 Thread Ben Noordhuis
On Fri, Jul 23, 2021 at 2:07 AM Shivan wrote: > > (might be better suited to v8-dev) > > For a research project, I'm trying to get the currently executing script's ID > from a microtask in V8 isolate.cc. I've thought of the following two > approaches: > > if (!this->context().is_null()) { >

[v8-dev] Re: Version Bumps of V8 v/s Chromium

2021-07-28 Thread Michael Hablich
Hi Suraj, we are not regularly updating the (minor) version number on main, as it would require to either: - Update the version number with each commit => Point of failure for CL authors and potential for race conditions - Have a bot running that updates the version number in a

Re: [v8-dev] Are uint32 values must be zero-extended in v8?

2021-07-28 Thread Zhao Jiazhong
Hello Andreas and Jakob, Thanks for all your onformation, but I still have some questions. > That being said, sometimes such nodes are missing, which can lead to security bugs. That's why there is lots of code checking for zero extension, see e.g.

Re: [v8-dev] How to Use ES6 Modules When Embedding V8

2021-07-28 Thread 'Georg Neis' via v8-dev
On Tue, Jul 27, 2021 at 7:22 AM 'Cisco Ortega' via v8-dev wrote: > The only source for using modules seems to be this Stack Overflow post here: > https://stackoverflow.com/questions/52023157/how-would-one-enable-and-use-es6-modules-in-the-v8-javascript-engine > > However it is still unclear to