JS: Remove redundant base class in TruthinessCheck

This commit is contained in:
Asger F
2024-12-02 13:26:37 +01:00
parent 628f60d2e3
commit 422c089a39

View File

@@ -142,7 +142,7 @@ Implementing this additional condition is easy. We implement a class with a pred
.. code-block:: ql
class TruthinessCheck extends DataFlow::Node, DataFlow::ValueNode {
class TruthinessCheck extends DataFlow::ValueNode {
SsaVariable v;
TruthinessCheck() {
@@ -290,7 +290,7 @@ step by step in the UI:
import javascript
class TruthinessCheck extends DataFlow::Node, DataFlow::ValueNode {
class TruthinessCheck extends DataFlow::ValueNode {
SsaVariable v;
TruthinessCheck() {