mirror of
https://github.com/github/codeql.git
synced 2026-02-24 02:43:40 +01:00
15 lines
451 B
Plaintext
15 lines
451 B
Plaintext
/**
|
|
* @name Framework coverage
|
|
* @description The number of API endpoints covered by MaD models sorted by
|
|
* package and source-, sink-, and summary-kind.
|
|
* @kind table
|
|
* @id cs/meta/framework-coverage
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.dataflow.internal.ExternalFlow
|
|
|
|
from string namespace, int pkgs, string kind, string part, int n
|
|
where modelCoverage(namespace, pkgs, kind, part, n)
|
|
select namespace, pkgs, kind, part, n
|