Fabio Niephaus
Fabio Niephaus
### TL;DR We plan to design and build a new C-API for Python that makes it easier for Python developers to interact with native code and ship native code with...
### TL;DR We plan to gradually improve support for popular Python IDEs and tools in GraalPy. ### Goals In addition to compatibility with popular Python packages (https://github.com/oracle/graalpython/issues/283), we also focus...
It looks like there are different interop problems when working with large integers (larger than long, so probably `BigInteger`-related): ``` GraalVM MultiLanguage Shell 1.0.0-rc12 Copyright (c) 2013-2019, Oracle and/or its...
Currently, we assume that all metadata works on all releases of GraalVM. Now that GraalVM for JDK 22 is out, there is unfortunately a first incompatibility: `undertow-core` in version `2.2.19.Final`...
I don't know why, but the author name is pre-filled in the feedback box. Instead, it should be the GitHub user name, so that the corresponding user is notified and...
Untrack files also need to be merged into a branch. Currently, "untracked" changes on a feature branch get lost when the branch is merged.
I've tried to enable coverage testing, see https://github.com/hpi-swa/Squot/commit/7f889691a1e5689b179a4fb12ff248bfd67c9647. Unfortunately, smalltalkCI fails because of [this](https://github.com/hpi-swa/Squot/blob/03f4697deb371f82a23aadf597b472f6443b751e/src/FileSystem-Git.package/TemporaryGitStamp.class/class/new.st#L3), for a stack trace see [here](https://travis-ci.org/hpi-swa/Squot/jobs/298283059).
It is not explained why `SLStatementNode` is annotated with `@ReportPolymorphism`. The node would benefit from an explanation and a reference to the splitting documentation. https://github.com/graalvm/simplelanguage/blob/e3e82664dd4b2d91a8d80dc462fa72bf0399aa14/language/src/main/java/com/oracle/truffle/sl/nodes/SLStatementNode.java#L64
This PR improves `make_component.sh` in the following ways: - "Exit immediately if a command exits with a non-zero status." (`set -e`) - Fix incorrect `rm -rf COMPONENT_DIR` and add user...
It'd be great if an example could be added to SimpleLanguage that demonstrates how to use TruffleNFI for implementing a FFI.