Skip to content

Commit 6c0dbcf

Browse files
committed
Java/C++: Add DataFlowErasedType aliases
1 parent d0b4653 commit 6c0dbcf

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
@@ -282,6 +282,8 @@ class DataFlowExpr = Expr;
282282

283283
class DataFlowType = Type;
284284

285+
class DataFlowErasedType = Type;
286+
285287
class DataFlowLocation = Location;
286288

287289
/** A function call relevant for data flow. */

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
@@ -191,6 +191,8 @@ class DataFlowExpr = Expr;
191191

192192
class DataFlowType = Type;
193193

194+
class DataFlowErasedType = Type;
195+
194196
class DataFlowLocation = Location;
195197

196198
/** A function call relevant for data flow. */

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,8 @@ class DataFlowExpr = Expr;
279279

280280
class DataFlowType = RefType;
281281

282+
class DataFlowErasedType = RefType;
283+
282284
class DataFlowLocation = Location;
283285

284286
class DataFlowCall extends Call {

0 commit comments

Comments
 (0)