We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f803ec commit 2d182deCopy full SHA for 2d182de
compiler/src/dotty/tools/dotc/Compiler.scala
@@ -34,8 +34,7 @@ class Compiler {
34
protected def frontendPhases: List[List[Phase]] =
35
List(new Parser) :: // Compiler frontend: scanner, parser
36
List(new TyperPhase) :: // Compiler frontend: namer, typer
37
- List(new CheckUnused.PostTyper) :: // Check for unused elements
38
- List(new CheckShadowing) :: // Check shadowing elements
+ List(new CheckUnused.PostTyper, new CheckShadowing) :: // Linting phases
39
List(new YCheckPositions) :: // YCheck positions
40
List(new sbt.ExtractDependencies) :: // Sends information on classes' dependencies to sbt via callbacks
41
List(new semanticdb.ExtractSemanticDB.ExtractSemanticInfo) :: // Extract info into .semanticdb files
0 commit comments