Skip to content

Commit

Permalink
Fix nulls on exhaustiveness check
Browse files Browse the repository at this point in the history
  • Loading branch information
Baltoli committed Mar 1, 2024
1 parent 8fa81a3 commit 485a682
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1084,8 +1084,8 @@ class Matrix private (
val k = fringe.zip(counterexample.get).map(t => t._2.toK(t._1))
val func = KApply(symlib.koreToK(name), KList(k))
val attributes = symlib.signatures(name)._3
val location = Parser.location(attributes).orElse(null)
val source = Parser.source(attributes).orElse(null)
val location = Parser.location(attributes)
val source = Parser.source(attributes)

kem(
new MatchingException(
Expand Down

0 comments on commit 485a682

Please sign in to comment.