mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
13 lines
635 B
Plaintext
13 lines
635 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 IncludeNeutralCallable extends RelevantNeutralCallable instanceof FlowSummaryImpl::Public::NeutralCallable {
|
|
/** Gets a string representing the callable in semi-colon separated format for use in flow summaries. */
|
|
final override string getCallableCsv() { result = Csv::asPartialNeutralModel(this) }
|
|
}
|