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
When running Smalltalk in the Polyglot Shell
When an error occurs, e.g. by simply running 1 shouldNotImplement
The Shell freezes and in some cases even cannot be terminated with Ctrl+C
As a developer I would expect an error message to be printed to the Shell and then be able to use the Shell again.
The text was updated successfully, but these errors were encountered:
- Add support for InteropLibrary's isException/throwException.
- Change default for headless option to true (headless should only be false if TruffleSqueak is started through its launcher).
- Throw SmalltalkExceptions as SqueakInteropException in case another language has triggered the code execution. This makes it possible to catch exceptions in other languages (e.g. JS: `try { Polyglot.eval("smalltalk", "1/0") } catch (error) { console.error("Got:", error) }`)
- Update in-image code to include an appropriate test
Closes#117
When running Smalltalk in the Polyglot Shell
When an error occurs, e.g. by simply running
1 shouldNotImplement
The Shell freezes and in some cases even cannot be terminated with Ctrl+C
As a developer I would expect an error message to be printed to the Shell and then be able to use the Shell again.
The text was updated successfully, but these errors were encountered: