Radosław Waśko
Radosław Waśko
This is partially expected, but I'm wondering if we should explicitly disallow usage of `System.exit` inside of GUI.  Because it shuts down the process, it kills the Language Server...
The repro is trivial - just declare a named binding in the REPL: ``` > abc = 123 [WARN] [2024-05-08T00:52:20+02:00] [enso.org.enso.compiler.Compiler] Internal_Repl_Module___:1:1: warning: Unused variable abc. 1 | from Standard.Base...
### Actual behaviour Try accessing a private field or constructor from another project. Regardless if the `--disable-private-check` flag is passed, it always fails with: e.g. ``` Execution finished with an...
> See [comment below](https://github.com/enso-org/enso/issues/1243#issuecomment-1959026431) for updated repro. ### General Summary When multiple modules define extension methods with the same name and for the same type and both modules are imported,...
Since #9692 has been merged, we can finally properly hide internal implementation details of our types! 🎉 (including their internal data/state) We should use that to make sure the internal...
As [suggested in a comment](https://github.com/enso-org/enso/pull/9724#discussion_r1568369261) by @JaroslavTulach: > Printing up to ten of failed test cases at the end of test report would be useful! > > We have a...
See the followin REPL session: ``` > File.new "C:\dev" >>> (File C:\dev) > File.new "C:\dev:a" Evaluation failed with: Illegal char at index 6: C:\dev:a java.lang.Exception: Illegal char at index 6:...
I just tried reading a JSON file that I wrote using PowerShell and got the following failure: ``` (Error: (Corrupted_Format (File_Like.Value (File foo.json)) 'Parse error in parsing JSON: Unexpected character...
For efficiency, the logs are sent on a background thread. There can be a problem if the logs are recorded faster than the background thread is able to process them,...
Follow up of #9873 We want to include project name, e.g. `enso_dev.Base_Tests` in the metadata of audit logs for Database connections. Currently this is blocked by #9845. Once the above...