-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Export diagnostics (including unused warnings) to SemanticDB #17835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
75e6bb6
Export diagnostics (including unused warnings) to SemanticDB
tanishiking c5a80c4
Add -Wunused:all to the compiler options to see Semanticdb export unused
tanishiking e1d0ec9
Add some comments
tanishiking f17fb5f
ExtractSemanticDB.PostInlining now update the .semanticdb file on disk
tanishiking d2b54c2
Parallelize read/write SemanticDB
tanishiking 56c5909
Run AppendDiagnostics phase after crossVersionChecks
tanishiking 50e0fd2
[WIP] Don't parse TextDocuments in AppendDiagnostics
tanishiking 2babbc4
Remove unnecessary suffix
tanishiking 5186b62
Remove unused local + Context
tanishiking 66a5306
Merge branch 'main' into export-diagnostics
tanishiking a414fae
Fix presentation compiler
tanishiking d5065ec
Parse TextDocuments instead of using `com.google.protobuf`
tanishiking d7258b4
Remove Context from relPath and so on
tanishiking 4b5d3e7
Remove from parallel
tanishiking 3008ed8
Remove ancii color code from SemanticDB
tanishiking c9de8e2
Extractor.extract uses unitCtx
tanishiking 40a2a00
Remove Context parameter from Scala3.range and toSemanticDbDiagnositcs
tanishiking 7b29f4c
Remove unused
tanishiking 4f6a092
Revert "Remove from parallel"
tanishiking a6dfec2
Merge branch 'main' into export-diagnostics
tanishiking 3daeaa6
Merge branch 'main' into export-diagnostics
tanishiking 499c347
Remove println
tanishiking 71a5cd0
Fix TastyBootstrapTests by adding sharable annotation to regex
tanishiking b28b425
Merge branch 'main' into export-diagnostics
tanishiking d54d8a2
Do not run toSemanticDiagnosic in parallel
tanishiking b8565a0
Fix wrong rebase
tanishiking 2857632
Merge branch 'main' into export-diagnostics
tanishiking 053e644
Restore removed comment
tanishiking 567d486
Fix writesToOutputDir
tanishiking 275e6fa
Uncomment the phase for appending warnings
tanishiking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
compiler/src/dotty/tools/dotc/semanticdb/DiagnosticOps.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package dotty.tools.dotc.semanticdb | ||
|
||
import dotty.tools.dotc.reporting.Diagnostic | ||
import dotty.tools.dotc.{semanticdb => s} | ||
import dotty.tools.dotc.interfaces.Diagnostic.{ERROR, INFO, WARNING} | ||
import dotty.tools.dotc.core.Contexts.Context | ||
import scala.annotation.internal.sharable | ||
|
||
object DiagnosticOps: | ||
@sharable private val asciiColorCodes = "\u001B\\[[;\\d]*m".r | ||
extension (d: Diagnostic) | ||
def toSemanticDiagnostic: s.Diagnostic = | ||
val severity = d.level match | ||
case ERROR => s.Diagnostic.Severity.ERROR | ||
case WARNING => s.Diagnostic.Severity.WARNING | ||
case INFO => s.Diagnostic.Severity.INFORMATION | ||
case _ => s.Diagnostic.Severity.INFORMATION | ||
val msg = asciiColorCodes.replaceAllIn(d.msg.message, m => "") | ||
s.Diagnostic( | ||
range = Scala3.range(d.pos.span, d.pos.source), | ||
severity = severity, | ||
message = msg | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
object Deprecated/*<-_empty_::Deprecated.*/ { | ||
@deprecated/*->scala::deprecated#*/ def deprecatedMethod/*<-_empty_::Deprecated.deprecatedMethod().*/ = ???/*->scala::Predef.`???`().*/ | ||
def main/*<-_empty_::Deprecated.main().*/ = deprecatedMethod/*->_empty_::Deprecated.deprecatedMethod().*/ | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.