We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getDocumentedParameter
1 parent e5bce54 commit 7f01586Copy full SHA for 7f01586
javascript/ql/src/semmle/javascript/JSDoc.qll
@@ -144,7 +144,7 @@ class JSDocParamTag extends JSDocTag {
144
/** Gets the parameter this tag refers to, if it can be determined. */
145
Variable getDocumentedParameter() {
146
exists(Parameterized parm | parm.getDocumentation() = getParent() |
147
- result = parm.getParameterVariable(getName())
+ result = pragma[only_bind_out](parm).getParameterVariable(getName())
148
)
149
}
150
0 commit comments