classfile-rs
classfile-rs copied to clipboard
JVM classfile parser and writer for Rust
as @x4e mentioned in this Kami blue issue https://github.com/kami-blue/client/issues/1892 You guys should change the name of the "master" branch to "main" because of the reasons listed by x4e himself in...
```java public class TestClass { public static void main(String[] args) { try { System.out.println("Hello,"); if("a".equals("b")) { return; } System.out.println("World!"); }catch(Exception e) { System.out.println("Exception"); } } } ``` ``` Error: analyze_file...