You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR makes a couple quick changes analogous to
runtimeverification/k#4055:
- Update `scala-maven-plugin` to its latest version
- Set the Java version by relying on `<release>` in
`maven-compiler-plugin` inherited from the parent POM, rather than
manually setting `-source` and `-target` for `javac`
- Disable various Scala language extensions and enable `-Werror`
- One warning about pattern matching on an erased type
- Remaining warnings were exhaustiveness issues fixed with a `case _ =>
???`. This is poor style and an abuse of `???` IMO, but it's already
pervasive throughout our codebase.
---------
Co-authored-by: Bruce Collie <[email protected]>
Copy file name to clipboardexpand all lines: matching/src/main/scala/org/kframework/backend/llvm/matching/pattern/SortCategory.scala
+1
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ object SortCategory {
49
49
MatchingException.Type.COMPILER_ERROR,
50
50
"LLVM Backend does not support multisets. If you are seeing this error due to a configuration cell tagged with multiplicity=\"*\", please add either type=\"Map\" or type=\"Set\". If you still need the collection to not contain duplicates, it is recommended you also add a unique identifier each time a cell is created. You can do this with !X:Int."
0 commit comments