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 @@ -34,8 +34,7 @@ class Compiler {
34
34
protected def frontendPhases : List [List [Phase ]] =
35
35
List (new Parser ) :: // Compiler frontend: scanner, parser
36
36
List (new TyperPhase ) :: // Compiler frontend: namer, typer
37
- List (new CheckUnused .PostTyper ) :: // Check for unused elements
38
- List (new CheckShadowing ) :: // Check shadowing elements
37
+ List (new CheckUnused .PostTyper , new CheckShadowing ) :: // Linting phases
39
38
List (new YCheckPositions ) :: // YCheck positions
40
39
List (new sbt.ExtractDependencies ) :: // Sends information on classes' dependencies to sbt via callbacks
41
40
List (new semanticdb.ExtractSemanticDB .ExtractSemanticInfo ) :: // Extract info into .semanticdb files
You can’t perform that action at this time.
0 commit comments