We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faaeb06 commit ccb1958Copy full SHA for ccb1958
1 file changed
liquidjava-verifier/src/main/java/liquidjava/diagnostics/errors/RefinementError.java
@@ -50,6 +50,7 @@ public String getCounterExampleString() {
50
// subtyping check, so the counterexample maps the symbolic name back to its compile-time value
51
found.getValue().getResolvedConstantNames(foundVarNames);
52
expected.getValue().getResolvedConstantNames(foundVarNames);
53
+ List<String> foundAssignments = found.getValue().getConjuncts().stream().map(Expression::toString).toList();
54
String counterexampleString = counterexample.assignments().stream()
55
// only include variables that appear in the found value and are not already fixed there
56
.filter(a -> CommandLineLauncher.cmdArgs.debugMode || (foundVarNames.contains(a.first())
0 commit comments