We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b02eb commit 93d9783Copy full SHA for 93d9783
csharp/ql/lib/semmle/code/csharp/dataflow/FlowSummary.qll
@@ -116,6 +116,11 @@ module SummaryComponentStack {
116
117
/** Gets a singleton stack representing a jump to `c`. */
118
SummaryComponentStack jump(Callable c) { result = singleton(SummaryComponent::jump(c)) }
119
+
120
+ /** Gets a singleton stack representing a synthetic global with name `name`. */
121
+ SummaryComponentStack syntheticGlobal(string synthetic) {
122
+ result = singleton(SummaryComponent::syntheticGlobal(synthetic))
123
+ }
124
}
125
126
class SummarizedCallable = Impl::Public::SummarizedCallable;
0 commit comments