Skip to content

Commit

Permalink
Lint MegaPhase after ExtractSemanticDB
Browse files Browse the repository at this point in the history
  • Loading branch information
schuetzcarl committed Jun 20, 2023
1 parent 10c9af0 commit 297183c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/src/dotty/tools/dotc/Compiler.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ class Compiler {
protected def frontendPhases: List[List[Phase]] =
List(new Parser) :: // Compiler frontend: scanner, parser
List(new TyperPhase) :: // Compiler frontend: namer, typer
List(new CheckUnused.PostTyper, new CheckShadowing) :: // Check for unused elements and shadowing elements
List(new YCheckPositions) :: // YCheck positions
List(new sbt.ExtractDependencies) :: // Sends information on classes' dependencies to sbt via callbacks
List(new semanticdb.ExtractSemanticDB) :: // Extract info into .semanticdb files
List(new CheckUnused.PostTyper, new CheckShadowing) :: // Check for unused elements and shadowing elements
List(new PostTyper) :: // Additional checks and cleanups after type checking
List(new sjs.PrepJSInterop) :: // Additional checks and transformations for Scala.js (Scala.js only)
List(new sbt.ExtractAPI) :: // Sends a representation of the API of classes to sbt via callbacks
Expand Down

0 comments on commit 297183c

Please sign in to comment.