File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
csharp/ql/lib/semmle/code/csharp/dataflow/internal Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -98,9 +98,7 @@ class ExprNode extends Node, TExprNode_ {
98
98
* The value of a parameter at function entry, viewed as a node in a data
99
99
* flow graph.
100
100
*/
101
- class ParameterNode extends Node {
102
- ParameterNode ( ) { this instanceof ParameterNodeImpl }
103
-
101
+ class ParameterNode extends Node instanceof ParameterNodeImpl {
104
102
/** Gets the parameter corresponding to this node, if any. */
105
103
DotNet:: Parameter getParameter ( ) {
106
104
exists ( DataFlowCallable c , int i | this .isParameterOf ( c , i ) and result = c .getParameter ( i ) )
@@ -111,7 +109,7 @@ class ParameterNode extends Node {
111
109
* (zero-based) position.
112
110
*/
113
111
predicate isParameterOf ( DataFlowCallable c , int i ) {
114
- this . ( ParameterNodeImpl ) .isParameterOf ( c , i )
112
+ super .isParameterOf ( c , i )
115
113
}
116
114
}
117
115
You can’t perform that action at this time.
0 commit comments