mirror of
https://github.com/DMaroo/GhidRust.git
synced 2025-12-24 19:20:22 +01:00
11 lines
263 B
Java
11 lines
263 B
Java
package ghidrust.decompiler.codegen.rust;
|
|
|
|
import ghidra.app.decompiler.ClangTokenGroup;
|
|
|
|
public class RustGen {
|
|
public static String generate(ClangTokenGroup ctg) {
|
|
RustVisitor rsv = new RustVisitor();
|
|
return rsv.visit(ctg.Parent());
|
|
}
|
|
}
|