1.5 Support find next loop when not comment | 支持没有注释时循环查找下一个对象
This commit is contained in:
11
src/test/java/io/github/linwancen/plugin/show/demo/Next.java
Normal file
11
src/test/java/io/github/linwancen/plugin/show/demo/Next.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package io.github.linwancen.plugin.show.demo;
|
||||
|
||||
import io.github.linwancen.plugin.show.demo.method.Child;
|
||||
|
||||
public class Next {
|
||||
public static void method() {
|
||||
Child child = new Child(true);
|
||||
child.haveNotDoc(null).haveNotDoc(new Child()).haveNotDoc(null);
|
||||
child.haveNotDoc(null).getField().haveNotDoc(null);
|
||||
}
|
||||
}
|
||||
@@ -34,6 +34,9 @@ public class Child extends Parent implements Face {
|
||||
return null;
|
||||
}
|
||||
|
||||
public Child haveNotDoc(Face face) {
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* bool
|
||||
|
||||
Reference in New Issue
Block a user