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 3fa990a commit 4f72977Copy full SHA for 4f72977
csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowDispatch.qll
@@ -256,7 +256,9 @@ newtype TDataFlowCallable =
256
257
class DataFlowCallable extends TDataFlowCallable {
258
/** Get the underlying source code callable, if any. */
259
- DotNet::Callable asCallable() { this = TDotNetCallable(result) }
+ DotNet::Callable asCallable() {
260
+ this = TDotNetCallable(result) or this = TSummarizedCallable(result)
261
+ }
262
263
/** Get the underlying summarized callable, if any. */
264
FlowSummary::SummarizedCallable asSummarizedCallable() { this = TSummarizedCallable(result) }
0 commit comments