We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6902bc commit 4f84273Copy full SHA for 4f84273
src/main/scala/viper/silver/ast/utility/chopper/Chopper.scala
@@ -961,6 +961,7 @@ trait Edges { this: Vertices =>
961
case _ => Seq(Vertices.FunctionSpec(n.funcname))
962
}
963
case n: ast.DomainFuncApp => Seq(Vertices.DomainFunction(n.funcname))
964
+ case n: ast.BackendFuncApp => Seq(Vertices.DomainFunction(n.funcname))
965
case n: ast.PredicateAccess => Seq(Vertices.PredicateSig(n.predicateName))
966
// The call is fine because the result is used as the target of a dependency.
967
case n: ast.Unfold => Seq(Vertices.unsafeGetPredicateBody(n.acc.loc.predicateName))
0 commit comments