Java/C++: Add DataFlowErasedType aliases

This commit is contained in:
Tom Hvitved
2019-11-20 14:02:15 +01:00
parent d0b4653e32
commit 6c0dbcfca2
3 changed files with 6 additions and 0 deletions

View File

@@ -282,6 +282,8 @@ class DataFlowExpr = Expr;
class DataFlowType = Type;
class DataFlowErasedType = Type;
class DataFlowLocation = Location;
/** A function call relevant for data flow. */

View File

@@ -191,6 +191,8 @@ class DataFlowExpr = Expr;
class DataFlowType = Type;
class DataFlowErasedType = Type;
class DataFlowLocation = Location;
/** A function call relevant for data flow. */

View File

@@ -279,6 +279,8 @@ class DataFlowExpr = Expr;
class DataFlowType = RefType;
class DataFlowErasedType = RefType;
class DataFlowLocation = Location;
class DataFlowCall extends Call {