We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1908be commit dc51226Copy full SHA for dc51226
csharp/ql/src/Telemetry/ExternalApi.qll
@@ -29,10 +29,10 @@ private predicate isParameterlessConstructor(DotNet::Callable c) {
29
c instanceof Constructor and c.getNumberOfParameters() = 0
30
}
31
32
-/** Holds if this API is part of a common testing library or framework. */
+/** Holds if the given callable is part of a common testing library or framework. */
33
private predicate isTestLibrary(DotNet::Callable c) { c.getDeclaringType() instanceof TestLibrary }
34
35
-/** Holds if this API is not worth supporting. */
+/** Holds if the given callable is not worth supporting. */
36
predicate isUninteresting(DotNet::Callable c) { isTestLibrary(c) or isParameterlessConstructor(c) }
37
38
/**
0 commit comments