Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220526f commit f78def5Copy full SHA for f78def5
1 file changed
csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll
@@ -818,11 +818,7 @@ predicate nodeIsHidden(Node n) {
818
def instanceof Ssa::ImplicitCallDefinition
819
)
820
or
821
- exists(Parameter p | p = n.(ParameterNode).getParameter() |
822
- not p.fromSource()
823
- or
824
- p.getCallable() instanceof FlowSummary::SummarizedCallable
825
- )
+ exists(Parameter p | p = n.(ParameterNode).getParameter() | not p.fromSource())
826
827
n =
828
TInstanceParameterNode(any(Callable c |
@@ -839,6 +835,8 @@ predicate nodeIsHidden(Node n) {
839
835
840
836
n instanceof SummaryNode
841
837
838
+ n instanceof SummaryParameterNode
+ or
842
n instanceof ParamsArgumentNode
843
844
n.asExpr() = any(WithExpr we).getInitializer()
0 commit comments