Skip to content

Commit 422c089

Browse files
committed
JS: Remove redundant base class in TruthinessCheck
1 parent 628f60d commit 422c089

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/codeql/codeql-language-guides/using-flow-labels-for-precise-data-flow-analysis.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Implementing this additional condition is easy. We implement a class with a pred
142142

143143
.. code-block:: ql
144144
145-
class TruthinessCheck extends DataFlow::Node, DataFlow::ValueNode {
145+
class TruthinessCheck extends DataFlow::ValueNode {
146146
SsaVariable v;
147147
148148
TruthinessCheck() {
@@ -290,7 +290,7 @@ step by step in the UI:
290290
291291
import javascript
292292
293-
class TruthinessCheck extends DataFlow::Node, DataFlow::ValueNode {
293+
class TruthinessCheck extends DataFlow::ValueNode {
294294
SsaVariable v;
295295
296296
TruthinessCheck() {

0 commit comments

Comments
 (0)