patch upper-case acronyms to be PascalCase

This commit is contained in:
Erik Krogh Kristensen
2022-03-11 11:10:33 +01:00
parent e3a15792fa
commit 69353bb014
422 changed files with 3532 additions and 2244 deletions

View File

@@ -9,4 +9,4 @@ where
or
not exists(ssa.toString()) and s = "error"
)
select v, ssa.getCFGNode(), s
select v, ssa.getCfgNode(), s

View File

@@ -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()

View File

@@ -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