Jan Štola
Jan Štola
> If JSRuntime isn't supposed to be public, is there a way I could have known that (given that it's explicitly marked as public)? Is there a documented list of...
> the npm script does not support the CLI argument --polyglot. Thank you for the report. You are right, we should add the handling of this special option into our...
`PolyglotMap` is an internal implementation detail. It is not even a public class. You are not supposed to use it directly.
> The returned result type of invokefunction is polyglotmap Yes, that's correct but there is no reason to cast the result to `PolyglotMap`, you can cast to `java.util.Map`. For example,...
I am sorry, I am not sure that I understand your request. `Value.as()` allows you to use JavaScript object as if it was Java object but it seems that you...
Please, provide exact steps to reproduce this issue. Do not forget to emphasize the expected versus the actual behavior. Also, please, describe what makes you feel that this is an...
[This question](https://stackoverflow.com/questions/68762814/how-to-add-sourcemaps-to-graalvm-js-inspection) on `stackoverflow.com` may cover what you are looking for.
Your test-case is a bit tricky despite it looks relatively simple at the first sight. I will try to explain what (I believe) is going on here. I will start...
Generally, I suggest you not to rely on language-specific stuff (like `this` in JavaScript calls) when doing interoperability with other objects/languages (if possible). If you really need `this` in such...
> So, do we understand correctly that "full JavaScript semantics" are intentionally not applied when the object containing the function is a ProxyObject? You lose "full JavaScript semantics" because you...