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