Skip to content

Commit

Permalink
Fix to QC search type convertTo
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Oct 16, 2023
1 parent aac7631 commit a39d377
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import com.fujitsu.vdmj.in.patterns.INBindingSetter;
import com.fujitsu.vdmj.pog.ProofObligation;
import com.fujitsu.vdmj.runtime.Context;
import com.fujitsu.vdmj.runtime.ContextException;
import com.fujitsu.vdmj.runtime.ValueException;
import com.fujitsu.vdmj.tc.expressions.TCExistsExpression;
import com.fujitsu.vdmj.values.NameValuePair;
Expand Down Expand Up @@ -122,6 +123,10 @@ public Results getValues(ProofObligation po, INExpression exp, List<INBindingSet
{
// ignore illegal values
}
catch (ContextException e)
{
// ignore illegal values
}

break;
}
Expand Down

0 comments on commit a39d377

Please sign in to comment.