We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a018501 + 92adc42 commit 02b8a33Copy full SHA for 02b8a33
1 file changed
src/main/scala/viper/silver/ast/pretty/PrettyPrinter.scala
@@ -481,7 +481,7 @@ object FastPrettyPrinter extends FastPrettyPrinterBase with BracketPrettyPrinter
481
case typ: Type => showType(typ)
482
case p: Program => showProgram(p)
483
case m: Member => showMember(m)
484
- case v: LocalVarDecl => showVar(v)
+ case v: AnyLocalVarDecl => showVar(v)
485
case dm: DomainMember => showDomainMember(dm)
486
case Trigger(exps) =>
487
text("{") <+> ssep(exps map show, group(char (',') <> line)) <+> "}"
0 commit comments