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.
1 parent 4a0aac8 commit aa656f7Copy full SHA for aa656f7
csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll
@@ -940,12 +940,10 @@ private module ParameterNodes {
940
import ParameterNodes
941
942
/** A data-flow node that represents a call argument. */
943
-class ArgumentNode extends Node {
944
- ArgumentNode() { this instanceof ArgumentNodeImpl }
945
-
+class ArgumentNode extends Node instanceof ArgumentNodeImpl {
946
/** Holds if this argument occurs at the given position in the given call. */
947
final predicate argumentOf(DataFlowCall call, int pos) {
948
- this.(ArgumentNodeImpl).argumentOf(call, pos)
+ super.argumentOf(call, pos)
949
}
950
951
0 commit comments