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 4df449d commit 22bdcf0Copy full SHA for 22bdcf0
powershell/ql/lib/semmle/code/powershell/ApiGraphs.qll
@@ -543,7 +543,9 @@ module API {
543
544
cached
545
predicate methodEdge(Node pred, string name, Node succ) {
546
- exists(DataFlow::CallNode call | succ = MkMethodAccessNode(call) and name = call.getName() |
+ exists(DataFlow::CallNode call |
547
+ succ = MkMethodAccessNode(call) and name = call.getName().toLowerCase()
548
+ |
549
pred = getForwardEndNode(getALocalSourceStrict(call.getQualifier()))
550
)
551
}
0 commit comments