mirror of
https://github.com/github/codeql.git
synced 2026-04-19 14:04:09 +02:00
12 lines
490 B
Plaintext
12 lines
490 B
Plaintext
import shared.FlowSummaries
|
|
import semmle.code.csharp.dataflow.internal.ExternalFlow
|
|
|
|
private class IncludeAllSummarizedCallable extends IncludeSummarizedCallable {
|
|
IncludeAllSummarizedCallable() { exists(this) }
|
|
}
|
|
|
|
private class IncludeNeutralSummarizedCallable extends RelevantNeutralCallable {
|
|
/** Gets a string representing the callable in semi-colon separated format for use in flow summaries. */
|
|
final override string getCallableCsv() { result = asPartialNeutralModel(this) }
|
|
}
|