File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
compiler/src/dotty/tools/dotc Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,7 @@ class Compiler {
35
35
protected def frontendPhases : List [List [Phase ]] =
36
36
List (new Parser ) :: // Compiler frontend: scanner, parser
37
37
List (new TyperPhase ) :: // Compiler frontend: namer, typer
38
- List (new CheckUnused .PostTyper ) :: // Check for unused elements
39
- List (new CheckShadowing ) :: // Check shadowing elements
38
+ List (new CheckUnused .PostTyper , new CheckShadowing ) :: // Linting phases
40
39
List (new YCheckPositions ) :: // YCheck positions
41
40
List (new sbt.ExtractDependencies ) :: // Sends information on classes' dependencies to sbt via callbacks
42
41
List (new semanticdb.ExtractSemanticDB .ExtractSemanticInfo ) :: // Extract info into .semanticdb files
You can’t perform that action at this time.
0 commit comments