-
Notifications
You must be signed in to change notification settings - Fork 1.7k
more renamings of acronyms to camelCase #10153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
javascript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/NosqlInjectionATM.ql
Fixed
Show fixed
Hide fixed
...ipt/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/NosqlInjectionATMLite.ql
Fixed
Show fixed
Hide fixed
...cript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/SqlInjectionATMLite.ql
Fixed
Show fixed
Hide fixed
javascript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/SqlInjectionATM.ql
Fixed
Show fixed
Hide fixed
javascript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/TaintedPathATM.ql
Fixed
Show fixed
Hide fixed
...script/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/TaintedPathATMLite.ql
Fixed
Show fixed
Hide fixed
javascript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/XssATM.ql
Fixed
Show fixed
Hide fixed
javascript/ql/experimental/adaptivethreatmodeling/modelbuilding/evaluation/XssATMLite.ql
Fixed
Show fixed
Hide fixed
9f93021
to
1e01bcf
Compare
SALElement() { | ||
containsSALAnnotation(this.(DeclarationEntry).getFile()) or | ||
this instanceof SALAnnotation | ||
library class SalElement extends Element { |
Check warning
Code scanning / CodeQL
Use of deprecated annotation
@@ -2,20 +2,26 @@ | |||
|
|||
import semmle.code.java.Type | |||
|
|||
library class JAXBElement extends Class { | |||
JAXBElement() { | |||
library class JaxbElement extends Class { |
Check warning
Code scanning / CodeQL
Use of deprecated annotation
/** DEPRECATED: Alias for JaxbElement */ | ||
deprecated class JAXBElement = JaxbElement; | ||
|
||
library class JaxbMarshalMethod extends Method { |
Check warning
Code scanning / CodeQL
Use of deprecated annotation
@@ -117,7 +117,7 @@ | |||
* * `sub` would be `message["Subject"]` (`Subscript`) | |||
* * `result` would be `"multipart test"` | |||
*/ | |||
private DataFlow::Node getSMTPSubscriptByIndex(DataFlow::CallCfgNode sendCall, string index) { | |||
private DataFlow::Node getSmtpSubscriptByIndex(DataFlow::CallCfgNode sendCall, string index) { |
Check warning
Code scanning / CodeQL
Missing QLDoc for parameter
107e808
to
255f6e3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Go 👍
3659094
to
7edf851
Compare
7edf851
to
1d1aa7c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JS 👍🏻
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C# 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C++ 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Java 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python 👍 overall
|
||
/** DEPRECATED: Alias for missingAnnotationOnSink */ | ||
deprecated predicate missingAnnotationOnSINK = missingAnnotationOnSink/3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just a test-file, so we can just do the rename without deprecation 😊
/** DEPRECATED: Alias for missingAnnotationOnSink */ | |
deprecated predicate missingAnnotationOnSINK = missingAnnotationOnSink/3; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll delete the deprecation with my deprecation-deletion-script in 14+ months anyway.
And I don't want to run the tests again, and bump the submodule pointer again, so I'll let this one stay.
One last round of renaming acronyms to follow our style guide. I'm not planning any more renamings of upper-case acronyms after this.
The change-notes from last time still work.
The tests fail, but there is an internal PR where they pass.