Skip to content

Commit 38b4a7e

Browse files
Merge pull request #10409 from dotty-staging/fix-quoteunpickler
Remove unnecessary self requirements
2 parents 2ea33a4 + 0e26ae0 commit 38b4a7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/src/scala/quoted/internal/QuoteMatching.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package scala.quoted.internal
33
import scala.quoted.{QuoteContext, Expr, Type}
44

55
/** Part of the QuoteContext interface that needs to be implemented by the compiler but is not visible to users */
6-
trait QuoteMatching { self: QuoteContext & QuoteUnpickler =>
6+
trait QuoteMatching {
77

88
val ExprMatch: ExprMatchModule
99

library/src/scala/quoted/internal/QuoteUnpickler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package scala.quoted.internal
33
import scala.quoted.{QuoteContext, Expr, Type}
44

55
/** Part of the QuoteContext interface that needs to be implemented by the compiler but is not visible to users */
6-
trait QuoteUnpickler { self: QuoteContext & QuoteMatching =>
6+
trait QuoteUnpickler {
77

88
/** Unpickle `repr` which represents a pickled `Expr` tree,
99
* replacing splice nodes with `holes`

0 commit comments

Comments
 (0)