Merge pull request #940 from aschackmull/cpp/sync-dataflow

CPP/Java: Sync Dataflow
This commit is contained in:
Nick Rolfe
2019-02-14 13:18:35 +00:00
committed by GitHub
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" }