You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[To redirect Truffle log output to a file use one of the following options:
* '--log.file=<path>' if the option is passed using a guest language launcher.
* '-Dpolyglot.log.file=<path>' if the option is passed using the host Java launcher.
* Configure logging using the polyglot embedding API.]
[engine] WARNING: The polyglot context is using an implementation that does not support runtime compilation.
The guest application code will therefore be executed in interpreted mode only.
Execution only in interpreted mode will strongly impact the guest application performance.
For more information on using GraalVM see https://www.graalvm.org/java/quickstart/.
To disable this warning the '--engine.WarnInterpreterOnly=false' option or use the '-Dpolyglot.engine.WarnInterpreterOnly=false' system property.
node:internal/modules/cjs/loader:933
const err = new Error(message);
^
You'll get a similar error if you try a more legitimate case of:
I think this unnecessarily introduces an ordering of options, not to mention making -e 'code' impossible as an option which will be very useful for quick debugging.
The analysis file itself doesn't seem to matter. In this case, the analysis file is just an empty file created by touch /tmp/empty.js
The text was updated successfully, but these errors were encountered:
E.g. if you try
You'll get the output
You'll get a similar error if you try a more legitimate case of:
As specified in the tutorial, I think the current design assumes anything following
--analysis <file>
to be a single file:I think this unnecessarily introduces an ordering of options, not to mention making
-e 'code'
impossible as an option which will be very useful for quick debugging.The analysis file itself doesn't seem to matter. In this case, the analysis file is just an empty file created by
touch /tmp/empty.js
The text was updated successfully, but these errors were encountered: