We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a critical issue, because currently I'm not able to inject C++-only parameters into v8pp::module exported modules.
JS: var myVar = objectA.objectB.object.C.prop;
var myVar = objectA.objectB.object.C.prop;
C++:
v8pp::module objectA(ctx.isolate()); v8pp::module objectB(ctx.isolate()); v8pp::module objectC(ctx.isolate()); std::string myProp = "myProb"; objectB .set("objectC", objectC); .set("prop", v8pp::property([myProp] { return myProp; }); // <- doesn't work! objectA.set("objectB", objectB);
The text was updated successfully, but these errors were encountered:
Seems to be related to #72
I have a local branch with some work-in-progress for this issue, but have no spare time to complete it.
Sorry, something went wrong.
Hi @pmed,
can I help you to implement this in any way ?
Hi @VitaminCpp
The changes from PR #72 were merged to version-2.0 branch, but I'm not sure they would be backported to the master.
version-2.0
No branches or pull requests
This is a critical issue, because currently I'm not able to inject C++-only parameters into v8pp::module exported modules.
JS:
var myVar = objectA.objectB.object.C.prop;
C++:
The text was updated successfully, but these errors were encountered: