XYZboom

Results 15 comments of XYZboom

Re-show a disposed compose window looks impossible right now, maybe here some other way to re-show a disposed window

Now disposed window is not able to re-show but we can change decorated state of window at runtime. The code below works ```kotlin fun main() = application { var undecorated...

Maybe we can store the lib file in a temp directory. ```java static private Path getLibStorePath(){ String userDefinedPath = System.getProperty("tree-sitter-lib"); // maybe we can use java.io.tmpdir if(userDefinedPath == null){ return...

To be more radical, I may also have the need for multiple threads to use the parser together

[hs_err_pid52292.log](https://github.com/user-attachments/files/18048223/hs_err_pid52292.log) a log file when use tree-sitter-ng in mutiple threads

Thank you for your reply. I have temporarily resolved this issue by **setting different "tree closer lib" values for each process**. I hope this solution will be helpful to those...

@lrytz Yes, I understand the working principle of scalac, which is similar to Kotlin's delegation of Javac to compile Java source code. In this issue, what I want to express...

> I (again) overlooked what is Scala code. Perhaps the title I gave to the issue was a bit misleading

Perhaps I have made some new discoveries, and this bug may be a Javac bug. Change `I1` to the following code, Javac will report a "name clash". ```java interface I1...

Java developers have reproduced this bug in [JDK-8347330](https://bugs.openjdk.org/browse/JDK-8347330). But before they fix this bug, Scala2 should also report an error like what Scala3 does.