We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a5e1a6 commit affdaf2Copy full SHA for affdaf2
compiler/test/dotty/tools/TestSources.scala
@@ -10,7 +10,6 @@ object TestSources {
10
// Std Lib
11
def stdLibSources: List[String] = {
12
val blacklisted = List(
13
- "StructuralCallSite.java", // see #4739
14
"volatile.scala", // see #5610
15
)
16
sources(Paths.get("tests/scala2-library/src/library/"), excludedFiles = blacklisted)
@@ -46,7 +45,7 @@ object TestSources {
46
45
val list = Files.readAllLines(Paths.get(path))
47
.iterator()
48
.asScala
49
- .map(_.trim) // allow identation
+ .map(_.trim) // allow indentation
50
.filterNot(_.startsWith("#")) // allow comment lines prefixed by #
51
.map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
52
.filter(_.nonEmpty)
0 commit comments