--
--
v8-dev mailing list
v8-...@googlegroups.com
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to v8-dev+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/7b6bdc89-ec2f-4594-8c4f-7b7af4b426d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Geschäftsführer: Paul Manicle, Halimah DeLaine Prado
Registergericht und -nummer: Hamburg, HRB 86891 Sitz der Gesellschaft: Hamburg
Diese E-Mail ist vertraulich. Wenn Sie nicht der richtige Adressat sind, leiten Sie diese bitte nicht weiter, informieren Sie den Absender und löschen Sie die E-Mail und alle Anhänge. Vielen Dank. This e-mail is confidential. If you are not the right addressee please do not forward it, please inform the sender, and please erase this e-mail including any attachments. Thanks.
Hi Dominik,for general V8 contribution guidelines, please follow https://v8.dev/docs/contribute. There is also currently some work going regarding stack traces. Feel free to use the same tracking bug (https://crbug.com/v8/8742) for your CLs. You can send your CLs to me for review and I will add additional reviewers as necessary.AFAIK Node 12 will stay at V8 API compatibility of 7.5 (the current V8 version being worked on is 7.6). Meaning your change won't make it into Node 12. Note that the contribution process for Node itself differs from V8.Cheers,Simon
From: Jakob Gruber <jgr...@chromium.org>
Date: Thu, May 16, 2019 at 2:01 PM
To: <v8-...@googlegroups.com>, Simon Zünd, Yang Guo
--Dear v8 community,Background: The native API is lacking the functionality "GetTypeName" on StackFrame objects contrary to Callsites where this feature is available to the managed API.We have implemented and tested this feature with Nodejs and would like to contribute those changes to the v8 source and get that feature into Nodejs as soon as possible.Can someone guide me through the contribution process regarding issue creation, code review, merge to Nodejs?Thanks,Dominik
--
v8-dev mailing list
v8-...@googlegroups.com
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to v8-...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to v8-dev+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/2eecbe69-7b7d-42f5-8437-f4fe7a2b1158%40googlegroups.com.
Unfortunately we don't accept patches from Github PRs and we don't review code on Github. Please follow the instructions at https://chromium.googlesource.com/chromium/src/+/master/docs/contributing.md#Uploading-a-change-for-review. This way, the CL can run against our Try bots and the CL can properly be reviewed in Gerrit.
To unsubscribe from this group and stop receiving emails from it, send an email to v8-dev+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/363c0022-4d1d-4aee-ae36-6a7589b7fb1e%40googlegroups.com.
can you give me an example on how to run a test procedure from "test-api-stack-traces.cc"? Running "tools/run-tests.py --outdir=out/x64.release cctest" does not result in any test runs.
Shot in the dark: are you building with `v8_static_library = true`? cctests unfortunately don't work in that config.
// following test code to test the GetTypeName feature:
function bar() {};
bar.prototype.x = function foo() { AnalyzeStackInNativeCode();}var baz = new bar();baz.x(); // returned typename = "bar" as expectedbaz.x.call("aString"); // typename is "" but I had expected it to be "String"To unsubscribe from this group and stop receiving emails from it, send an email to v8-dev+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/1bf1b206-45d6-4bf2-82ed-ae64b988acc6%40googlegroups.com.