Skip to content

Commit 1c19629

Browse files
committed
Move Staging phase after typer
1 parent e24a0b7 commit 1c19629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/Compiler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ class Compiler {
3838
protected def frontendPhases: List[List[Phase]] =
3939
List(new FrontEnd) :: // Compiler frontend: scanner, parser, namer, typer
4040
List(new YCheckPositions) :: // YCheck positions
41-
List(new Staging) :: // Check PCP, heal quoted types and expand macros
4241
List(new sbt.ExtractDependencies) :: // Sends information on classes' dependencies to sbt via callbacks
4342
List(new semanticdb.ExtractSemanticDB) :: // Extract info into .semanticdb files
4443
List(new PostTyper) :: // Additional checks and cleanups after type checking
44+
List(new Staging) :: // Check PCP, heal quoted types and expand macros
4545
List(new sbt.ExtractAPI) :: // Sends a representation of the API of classes to sbt via callbacks
4646
List(new SetRootTree) :: // Set the `rootTreeOrProvider` on class symbols
4747
Nil

0 commit comments

Comments
 (0)