mirror of
https://github.com/github/codeql.git
synced 2026-05-01 19:55:15 +02:00
patch upper-case acronyms to be PascalCase
This commit is contained in:
@@ -9,4 +9,4 @@ where
|
||||
or
|
||||
not exists(ssa.toString()) and s = "error"
|
||||
)
|
||||
select v, ssa.getCFGNode(), s
|
||||
select v, ssa.getCfgNode(), s
|
||||
|
||||
@@ -3,4 +3,4 @@ import semmle.code.java.dataflow.SSA
|
||||
|
||||
from SsaPhiNode ssa, SsaSourceVariable v, SsaVariable phiInput
|
||||
where ssa.getAPhiInput() = phiInput and ssa.getSourceVariable() = v
|
||||
select v, ssa.getCFGNode(), phiInput.getCFGNode()
|
||||
select v, ssa.getCfgNode(), phiInput.getCfgNode()
|
||||
|
||||
@@ -3,4 +3,4 @@ import semmle.code.java.dataflow.SSA
|
||||
|
||||
from SsaVariable ssa, SsaSourceVariable v, Expr use
|
||||
where use = ssa.getAUse() and ssa.getSourceVariable() = v
|
||||
select v, ssa.getCFGNode(), ssa.toString(), use
|
||||
select v, ssa.getCfgNode(), ssa.toString(), use
|
||||
|
||||
Reference in New Issue
Block a user