mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:54:09 +03:00
479f74cc84
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.
11 lines
365 B
Batchfile
11 lines
365 B
Batchfile
@echo off
|
|
set comp-dir=%~dp0\..\component
|
|
set EXTRA_OPTS=-Dgraal.PrintGraph=Network
|
|
FOR %%A in (%*) DO (
|
|
if /I %%A==--dump-graphs (
|
|
set EXTRA_OPTS=%EXTRA_OPTS% -Dgraal.Dump=Truffle:1
|
|
)
|
|
)
|
|
java -jar -Dtruffle.class.path.append=%comp-dir%\runtime.jar -Dpolyglot.engine.IterativePartialEscape=true %EXTRA_OPTS% %JAVA_OPTS% %comp-dir%\runner.jar %*
|
|
exit /B %errorlevel%
|