We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf8feeb commit 3e13690Copy full SHA for 3e13690
1 file changed
morpher-passes/src/main/java/com/github/luiox/passes/Main.java
@@ -17,6 +17,9 @@ public static void main(String[] args) {
17
PassContext context = new PassContext();
18
ResourceHelper.importFromJar(context.getContainer(), "sample-001.jar");
19
20
+ // 添加依赖库路径,如果不加的话,可能会导致找不到类
21
+// context.getPassHelper().addLibPath("dep");
22
+
23
PassRunner runner = new PassRunner();
24
runner.add(Pipeline.of("test")
25
.add(Phase.of("test1", 0, ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS)
0 commit comments