mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01: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) }
|
|
}
|