JS: fix more instances of ql/missing-parameter-qldoc

This commit is contained in:
Erik Krogh Kristensen
2021-12-20 13:46:15 +01:00
parent 3762ce2c72
commit daed33f5af
14 changed files with 31 additions and 30 deletions

View File

@@ -309,12 +309,13 @@ private module JQueryClientRequest {
/**
* Gets a node refering to the response contained in an `jqXHR` object.
*/
private DataFlow::SourceNode getAResponseNodeFromAnXHRObject(DataFlow::SourceNode obj) {
private DataFlow::SourceNode getAResponseNodeFromAnXHRObject(DataFlow::SourceNode jqXHR) {
result =
obj.getAPropertyRead(any(string s |
s = "responseText" or
s = "responseXML"
))
jqXHR
.getAPropertyRead(any(string s |
s = "responseText" or
s = "responseXML"
))
}
/**