MCPcopy Create free account
hub / github.com/Whiley/WhileyCompiler / isIgnored

Method isIgnored

src/main/java/wyc/task/QuickCheck.java:892–900  ·  view source on GitHub ↗
(Decl.Named decl)

Source from the content-addressed store, hash-verified

890 }
891
892 public boolean isIgnored(Decl.Named decl) {
893 String s = decl.getQualifiedName().toString();
894 for(int i=0;i!=ignores.length;++i) {
895 if(s.endsWith(ignores[i])) {
896 return true;
897 }
898 }
899 return false;
900 }
901
902 public Context setIgnores(String... ignores) {
903 Context context = new Context(this);

Callers 1

checkMethod · 0.80

Calls 2

getQualifiedNameMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected