Christian Wirth
Christian Wirth
Hi @devsnek , most of the functions you asked for are exposed when you start with an additional flag: ``` $ js --experimental-options --js.test262-mode=true > $262.createRealm function createRealm() { [native...
Hi, as you already mention, the suggested way to do this is to create a new `Context` object every time. By using a shared `Engine` and reusing cached `Source` objects...
Hi @erstr2ggl thanks for your reproducer. I can roughly confirm your numbers. I'd add one more round of warmup up Graal, as that seems to have some influence, but in...
Hi, I can confirm we are around 2x slower on that example. I don't think there is a whole lot we can do about that. * The strength of our...
Hi, in your examples, you are able to set `IVR` to the JS global object; and you are able to set `say` so that it can be called from JavaScript....
Hi @brentco thanks for your clarification. I better understand your usecase now. The reflection problem seems to be 100% on the side of your Java application, has nothing to do...
If you manually do that, you can expose them to the global object. See my [example above](https://github.com/graalvm/graaljs/issues/295#issuecomment-642097182). But you have to do that for every method you make available (unlike...
Hi @p-bakker ah, ok, that seems to be bug I also found - when in the REPL, you are not on a breakpoint, so the console is not working properly....
(tracked internally as GR-27550)
Hi @young-yan for us to be able to really look into the issue, please provide a fully runnable example that we can execute on our machines, without further dependencies (except...