Andreas Woess

Results 72 comments of Andreas Woess

Note that Node.js is not part of the official Oracle GraalVM product and not covered by the LTS update policy. It's released as a standalone distribution; as you've already discovered...

I suppose you got that from `Value.toString()`? That string representation is not supposed to be consumed by applications. You can use various `Value` methods (like `getMember()`, `getMemberKeys()`, `getArrayElement()`, `getArraySize()`) to...

I've just noticed that GraalJS has been dropped in v2 (https://github.com/test262-fyi/data/issues/98). Do you have plans to add it back or would like us to try and contribute a PR? Note...

Related issue: https://github.com/oracle/graaljs/issues/611.

I think this change (i.e. https://github.com/tc39/ecma262/pull/3307), by side effect, also affects destructuring assignments. Namely, I believe the following test262 tests would have to be updated to reflect the new evaluation...

I think you could use the native-image flag `--exclude-config` to exclude the ICU4J resource files from the image (saving ~8MB). Something like this should work: ``` …/native-image […] --initialize-at-run-time=org.graalvm.shadowed.com.ibm.icu --exclude-config...

This PR also fixes https://github.com/BurntSushi/ripgrep/issues/2778.

We don't guarantee that integers will stay integers. Please don't rely on a particular numeric type. I suggest to expect a `Number` instead and use `Number.intValue()/doubleValue()` to convert. If you...

Happy to accept contributions in that area. The commonjs support has been a bit neglected tbh... We will need some test coverage for it. I think you can find most...

`org.graalvm.js:js` is a pom artifact now (just like `org.graalvm.polyglot:js`), so it needs `pom`.