mirror of
https://github.com/github/codeql.git
synced 2026-02-10 04:01:11 +01:00
15 lines
442 B
Plaintext
15 lines
442 B
Plaintext
/**
|
|
* @name Framework coverage
|
|
* @description The number of API endpoints covered by CSV models sorted by
|
|
* package and source-, sink-, and summary-kind.
|
|
* @kind table
|
|
* @id cs/meta/framework-coverage
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.dataflow.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
|