File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import sbt.librarymanagement.{
12
12
* Settings to support validation of TastyUnpickler against the release of dotty with the matching TASTy version
13
13
*/
14
14
object TastySupport {
15
- val supportedTASTyRelease = " 3.5.0-RC4 " // TASTY: 28.5-1
15
+ val supportedTASTyRelease = " 3.5.1-RC1 " // TASTY: 28.5-1
16
16
val scala3Compiler = " org.scala-lang" % " scala3-compiler_3" % supportedTASTyRelease
17
17
val scala3Library = " org.scala-lang" % " scala3-library_3" % supportedTASTyRelease
18
18
@@ -69,7 +69,9 @@ object DottySupport {
69
69
object DottyLibrarySourceFilter extends FileFilter {
70
70
def accept (file : File ): Boolean = {
71
71
val name = file.getName
72
- file.isFile && (name.endsWith(" .scala" ) || name.endsWith(" .java" ))
72
+ file.isFile &&
73
+ (name.endsWith(" .scala" ) || name.endsWith(" .java" )) &&
74
+ ! Set (" AnyKind.scala" , " Matchable.scala" ).contains(name)
73
75
}
74
76
}
75
77
You can’t perform that action at this time.
0 commit comments