We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02b8a33 + c16d964 commit 9888c23Copy full SHA for 9888c23
1 file changed
src/main/scala/viper/silver/ast/pretty/PrettyPrinter.scala
@@ -10,6 +10,7 @@ import scala.language.implicitConversions
10
import scala.collection.immutable.Queue
11
import scala.collection.immutable.Queue.{empty => emptyDq}
12
import viper.silver.ast._
13
+import viper.silver.verifier.DummyNode
14
15
import scala.annotation.tailrec
16
@@ -486,6 +487,7 @@ object FastPrettyPrinter extends FastPrettyPrinterBase with BracketPrettyPrinter
486
487
case Trigger(exps) =>
488
text("{") <+> ssep(exps map show, group(char (',') <> line)) <+> "}"
489
case null => uninitialized
490
+ case DummyNode => text("DummyNode")
491
}
492
493
/** Show a program. */
0 commit comments