Skip to content

Commit ee55031

Browse files
hvitvedaschackmull
authored andcommitted
Add stub implementations for isUnreachableInCall()
1 parent eabfa31 commit ee55031

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,3 +264,5 @@ class DataFlowCall extends Expr {
264264
/** Gets the enclosing callable of this call. */
265265
Function getEnclosingCallable() { result = this.getEnclosingFunction() }
266266
}
267+
268+
predicate isUnreachableInCall(Node n, DataFlowCall call) { none() } // stub implementation

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,5 @@ class DataFlowCall extends CallInstruction {
204204

205205
Function getEnclosingCallable() { result = this.getEnclosingFunction() }
206206
}
207+
208+
predicate isUnreachableInCall(Node n, DataFlowCall call) { none() } // stub implementation

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,3 +1357,5 @@ class DataFlowExpr = DotNet::Expr;
13571357
class DataFlowType = DotNet::Type;
13581358

13591359
class DataFlowLocation = Location;
1360+
1361+
predicate isUnreachableInCall(Node n, DataFlowCall call) { none() } // stub implementation

0 commit comments

Comments
 (0)