Skip to content

Commit 56dc583

Browse files
committed
Eliminate more : after extension
Everytime I clean everything a new version of QuotesImpl is merged that brings back the `:`s...
1 parent 79cbead commit 56dc583

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/src/scala/quoted/runtime/impl/QuotesImpl.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1666,7 +1666,7 @@ class QuotesImpl private (using val ctx: Context) extends Quotes, QuoteUnpickler
16661666
end NamedTypeTypeTest
16671667

16681668
given NamedTypeMethods: NamedTypeMethods with
1669-
extension (self: NamedType):
1669+
extension (self: NamedType)
16701670
def qualifier: TypeRepr = self.prefix
16711671
def name: String = self.name.toString
16721672
end extension
@@ -1807,7 +1807,7 @@ class QuotesImpl private (using val ctx: Context) extends Quotes, QuoteUnpickler
18071807
end AndOrTypeTypeTest
18081808

18091809
given AndOrTypeMethods: AndOrTypeMethods with
1810-
extension (self: AndOrType):
1810+
extension (self: AndOrType)
18111811
def left: TypeRepr = self.tp1.stripTypeVar
18121812
def right: TypeRepr = self.tp2.stripTypeVar
18131813
end extension
@@ -1969,7 +1969,7 @@ class QuotesImpl private (using val ctx: Context) extends Quotes, QuoteUnpickler
19691969
end LambdaTypeTypeTest
19701970

19711971
given LambdaTypeMethods: LambdaTypeMethods with
1972-
extension (self: LambdaType):
1972+
extension (self: LambdaType)
19731973
def paramNames: List[String] = self.paramNames.map(_.toString)
19741974
def paramTypes: List[TypeRepr] = self.paramInfos
19751975
def resType: TypeRepr = self.resType

0 commit comments

Comments
 (0)