Update python/ql/src/experimental/dataflow/internal/DataFlowPublic.qll

Co-authored-by: Rasmus Wriedt Larsen <rasmuswriedtlarsen@gmail.com>
This commit is contained in:
yoff
2020-07-03 13:31:38 +02:00
committed by GitHub
parent 40a6728748
commit 8891fbf006

View File

@@ -27,9 +27,7 @@ newtype TNode =
* (`ExprNode`) or a parameter (`ParameterNode`).
*/
class Node extends TNode {
/**
* Get a string representation of this data flow node.
*/
/** Gets a textual representation of this element. */
string toString() { result = "Data flow node" }
/** Gets the scope of this node. */
@@ -155,4 +153,4 @@ class BarrierGuard extends Expr {
*/
class Content extends string {
Content() { this = "Content" }
}
}