Java Bytecode to Go Transpiler
Java bytecode is rigid and well define while java source code uses the compiler to add syntactic sugar. Also, many languages compile to java bytecode so this transpiler will also work for any language that can produce java bytecode.
I am not an expert on compilers or transpilers and I only have a basic understanding of java bytecode. I used the following resources to learn and base this implementation on.