File tree 3 files changed +2
-4
lines changed
compiler/src/dotty/tools/dotc
3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class Compiler {
36
36
List (new Parser ) :: // Compiler frontend: scanner, parser
37
37
List (new TyperPhase ) :: // Compiler frontend: namer, typer
38
38
List (new CheckUnused .PostTyper ) :: // Check for unused elements
39
- // List(new YCheckPositions) :: // YCheck positions
39
+ // List(new YCheckPositions) :: // YCheck positions
40
40
List (new sbt.ExtractDependencies ) :: // Sends information on classes' dependencies to sbt via callbacks
41
41
List (new semanticdb.ExtractSemanticDB ) :: // Extract info into .semanticdb files
42
42
List (new PostTyper ) :: // Additional checks and cleanups after type checking
Original file line number Diff line number Diff line change @@ -1355,7 +1355,7 @@ object Trees {
1355
1355
def Quote (tree : Tree )(body : Tree , tags : List [Tree ])(using Context ): Quote = tree match {
1356
1356
case tree : Quote if (body eq tree.body) && (tags eq tree.tags) => tree
1357
1357
case _ => finalize(tree, untpd.Quote (body, tags)(sourceFile(tree)))
1358
- }
1358
+ }
1359
1359
def Splice (tree : Tree )(expr : Tree )(using Context ): Splice = tree match {
1360
1360
case tree : Splice if (expr eq tree.expr) => tree
1361
1361
case _ => finalize(tree, untpd.Splice (expr)(sourceFile(tree)))
Original file line number Diff line number Diff line change @@ -256,8 +256,6 @@ object Inlines:
256
256
else
257
257
cpy.Block (inlined)(inlined.bindings, inlined.expansion)
258
258
259
-
260
-
261
259
/** Leave only a call trace consisting of
262
260
* - a reference to the top-level class from which the call was inlined,
263
261
* - the call's position
You can’t perform that action at this time.
0 commit comments