Skip to content

Commit 2d97d0f

Browse files
committed
WIP stubbing for DataFlowStack
1 parent 6187322 commit 2d97d0f

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

rust/ql/lib/codeql/rust/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@ private import codeql.rust.dataflow.FlowSummary
1515
private import FlowSummaryImpl as FlowSummaryImpl
1616

1717

18-
//** @JB1 Remove, stubbed for #153 */
19-
/** A data-flow node that represents a call argument. */
20-
abstract class ArgumentNode extends Node {
21-
22-
/** Gets the call in which this node is an argument. */
23-
final DataFlowCall getCall() { none() }
24-
}
25-
//** @JB1 end stub for #153 */
26-
2718
/**
2819
* A return kind. A return kind describes how a value can be returned from a
2920
* callable.
@@ -103,7 +94,7 @@ final class DataFlowCall extends TDataFlowCall {
10394

10495
//** TODO JB1: Move to subclass, monkey patching for #153 */
10596
DataFlowCallable getARuntimeTarget(){ none() }
106-
ArgumentNode getAnArgumentNode(){ none() }
97+
Node::ArgumentNode getAnArgumentNode(){ none() }
10798
int totalorder(){ none() }
10899
//** TODO JB1: end stubs for #153 */
109100
}

0 commit comments

Comments
 (0)