enso/distribution/bin/enso
Jaroslav Tulach 479f74cc84
Enso Integration with Ideal Graph Visualizer (#3533)
This PR adds sources for Enso language support in IGV (and NetBeans). The support is based on TextMate grammar shown in the editor and registration of the Enso language so IGV can find it. Then this PR adds new GitHub Actions workflow file to build the project using Maven.
2022-06-23 04:43:49 +00:00

13 lines
320 B
Plaintext
Executable File

COMP_PATH=$(dirname "$0")/../component
EXTRA_OPTS="-Dgraal.PrintGraph=Network"
for opt in "$@"; do
if [ "$opt" = "--dump-graphs" ]; then
EXTRA_OPTS="$EXTRA_OPTS -Dgraal.Dump=:1"
fi
done
exec java -jar -Dtruffle.class.path.append="$COMP_PATH/runtime.jar" $EXTRA_OPTS $JAVA_OPTS $COMP_PATH/runner.jar "$@"
exit