Skip to content

Commit 8367c37

Browse files
committed
wip
1 parent 8af3591 commit 8367c37

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

compiler/src/dotty/tools/dotc/config/Printers.scala

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,9 @@ object Printers {
4747
val variances = noPrinter
4848
}
4949

50-
51-
// tests/pos/quoted-var.scala failed
52-
// tests/pos/i4774e.scala failed
53-
// tests/pos/i7405.scala failed
54-
// tests/pos/i7405b.scala failed
55-
// tests/pos/i4774f.scala failed
56-
// tests/pos/quoted-var.scala failed
57-
5850
// tests/run-macros/i7519c failed
5951
// tests/run-macros/quote-matching-optimize-2 failed
6052
// tests/run-macros/quote-matcher-symantics-3 failed
61-
// tests/run-macros/i7048 failed
6253
// tests/run-macros/i5941 failed
6354
// tests/run-macros/quote-matching-optimize-1 failed
6455
// tests/run-macros/i8007 failed

compiler/src/dotty/tools/dotc/core/quoted/PickledQuotes.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ object PickledQuotes {
9696
end if
9797
val tree1 = super.transform(tree)
9898
spliceTypes match
99-
case Some(f) => tree1.withType(f(tree.tpe))
99+
case Some(f) => tree1.withType(f(tree1.tpe))
100100
case None => tree1
101101
}
102102
}

compiler/src/dotty/tools/dotc/transform/ReifyQuotes.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,6 @@ class ReifyQuotes extends MacroTransform {
341341
case info @ ClassInfo(_, _, classParents, _, _) => classParents.reduce(_ & _)
342342
case info => info.hiBound
343343
apply(hiBound)
344-
case tp @ TermRef(NoPrefix, _) =>
345-
apply(tp.widenTermRefExpr)
346344
case tp =>
347345
mapOver(tp)
348346
}

0 commit comments

Comments
 (0)