CPP/Java: Sync Dataflow

This commit is contained in:
Anders Schack-Mulligen
2019-02-14 09:59:08 +01:00
parent 26525fc1b5
commit 980a690b8b
2 changed files with 6 additions and 2 deletions

View File

@@ -237,7 +237,9 @@ import ImplCommon
* this dispatch target of `ma` implies a reduced set of dispatch origins
* to which data may flow if it should reach a `return` statement.
*/
abstract class CallContext extends TCallContext { abstract string toString(); }
abstract class CallContext extends TCallContext {
abstract string toString();
}
class CallContextAny extends CallContext, TAnyCallContext {
override string toString() { result = "CcAny" }

View File

@@ -237,7 +237,9 @@ import ImplCommon
* this dispatch target of `ma` implies a reduced set of dispatch origins
* to which data may flow if it should reach a `return` statement.
*/
abstract class CallContext extends TCallContext { abstract string toString(); }
abstract class CallContext extends TCallContext {
abstract string toString();
}
class CallContextAny extends CallContext, TAnyCallContext {
override string toString() { result = "CcAny" }