File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
compiler/test/dotty/tools/dotc/semanticdb Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ class SemanticdbTests:
71
71
def collectErrorOrUpdate (expectPath : Path , obtained : String ) =
72
72
if updateExpectFiles then
73
73
Files .write(expectPath, obtained.getBytes(StandardCharsets .UTF_8 ))
74
- println(" updated: " + expectPath)
75
74
else
76
75
val expected = new String (Files .readAllBytes(expectPath), StandardCharsets .UTF_8 )
77
76
val expectName = expectPath.getFileName
@@ -87,12 +86,8 @@ class SemanticdbTests:
87
86
.resolve(" semanticdb" )
88
87
.resolve(relpath)
89
88
.resolveSibling(filename + " .semanticdb" )
90
- println(semanticdbPath)
91
89
val expectPath = source.resolveSibling(filename.replace(" .scala" , " .expect.scala" ))
92
90
val doc = Tools .loadTextDocument(source, relpath, semanticdbPath)
93
- println(semanticdbPath.getFileName().toString())
94
- if (semanticdbPath.getFileName().toString() == " ValPattern.scala.semanticdb" )
95
- println(doc)
96
91
Tools .metac(doc, rootSrc.relativize(source))(using metacSb)
97
92
val obtained = trimTrailingWhitespace(SemanticdbTests .printTextDocument(doc))
98
93
collectErrorOrUpdate(expectPath, obtained)
You can’t perform that action at this time.
0 commit comments