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
+ refactor Makefile to stay in synch with AuDoscore
+ bring back the PTC (public test cleaner) - but as preliminary shell script
+ replace Unicode "✓" / "✗" with ASCII "\u2713" / "\u2717" in PointsMerger to satisfy "-encoding ASCII"
+ add initial "tests/compare_interface_top/" - methods work ok, but functions have heavy type erasure in class file
valtopValFun:Int=>Long= x => x -1// wrong types are intentional - BUT NOT DETECTED due to type erasure of "scala.Function1<java.lang.Object, java.lang.Object>" in .class!
2
+
deftopDefFun:Long=>Long= x => x -1// wrong types are intentional - BUT NOT DETECTED due to type erasure of "scala.Function1<java.lang.Object, java.lang.Object>" in .class!
3
+
deftopDefMeth(x: Long):Long= x -1// wrong types are intentional - only this is found as scala generates "public static int topDefMeth(int);"
0 commit comments