Consider the following:
public interface Face {
default void meth() {
}
}
public class Impl implements Face {
}
The method call "meth" is highlighting as unknown (underlined) because the default interface method is not available through ClassNode.getMethods().

Consider the following:
The method call "meth" is highlighting as unknown (underlined) because the default interface method is not available through
ClassNode.getMethods().