File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
cpp/ql/lib/semmle/code/cpp/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 @@ -219,15 +219,13 @@ class DataFlowExpr = Expr;
219
219
class DataFlowType = Type ;
220
220
221
221
/** A function call relevant for data flow. */
222
- class DataFlowCall extends Expr {
223
- DataFlowCall ( ) { this instanceof Call }
224
-
222
+ class DataFlowCall extends Expr instanceof Call {
225
223
/**
226
224
* Gets the nth argument for this call.
227
225
*
228
226
* The range of `n` is from `0` to `getNumberOfArguments() - 1`.
229
227
*/
230
- Expr getArgument ( int n ) { result = this . ( Call ) .getArgument ( n ) }
228
+ Expr getArgument ( int n ) { result = super .getArgument ( n ) }
231
229
232
230
/** Gets the data flow node corresponding to this call. */
233
231
ExprNode getNode ( ) { result .getExpr ( ) = this }
You can’t perform that action at this time.
0 commit comments