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

@@ -1,8 +1,8 @@
private import semmle.code.cpp.dataflow.DataFlow
private import DataFlow
class ASTConf extends Configuration {
ASTConf() { this = "ASTFieldFlowConf" }
class AstConf extends Configuration {
AstConf() { this = "ASTFieldFlowConf" }
override predicate isSource(Node src) {
src.asExpr() instanceof NewExpr
@@ -30,3 +30,6 @@ class ASTConf extends Configuration {
b.asExpr().(AddressOfExpr).getOperand() = a.asExpr()
}
}
/** DEPRECATED: Alias for AstConf */
deprecated class ASTConf = AstConf;