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.
2 parents e0e9535 + ca8c3da commit cf13992Copy full SHA for cf13992
docs/language/ql-training/java/global-data-flow-java.rst
@@ -165,8 +165,8 @@ Add an additional taint step that (heuristically) taints a local variable if it
165
.. code-block:: ql
166
167
class TaintedOGNLConfig extends TaintTracking::Configuration {
168
- override predicate isAdditionalTaintStep(DataFlow::Node pred,
169
- DataFlow::Node succ) {
+ override predicate isAdditionalTaintStep(DataFlow::Node node1,
+ DataFlow::Node node2) {
170
exists(Field f, RefType t |
171
node1.asExpr() = f.getAnAssignedValue() and
172
node2.asExpr() = f.getAnAccess() and
0 commit comments