mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
14 lines
652 B
Plaintext
14 lines
652 B
Plaintext
private import semmle.code.csharp.dataflow.internal.DataFlowPrivate
|
|
private import semmle.code.csharp.dataflow.internal.FlowSummaryImpl as FlowSummaryImpl
|
|
import shared.FlowSummaries
|
|
|
|
private class IncludeAllSummarizedCallable extends IncludeSummarizedCallable {
|
|
IncludeAllSummarizedCallable() { exists(this) }
|
|
}
|
|
|
|
private class IncludeNeutralSummarizedCallable extends RelevantNeutralCallable instanceof FlowSummaryImpl::Public::NeutralSummaryCallable
|
|
{
|
|
/** Gets a string representing the callable in semi-colon separated format for use in flow summaries. */
|
|
final override string getCallableCsv() { result = Csv::asPartialNeutralModel(this) }
|
|
}
|