Skip to content

Commit ec1a1cf

Browse files
committed
Remove quoted.Quoted
1 parent 609fc11 commit ec1a1cf

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

library/src/scala/quoted/Expr.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package scala.quoted
33
import scala.runtime.quoted.Runner
44
import scala.runtime.quoted.Unpickler.Pickled
55

6-
sealed abstract class Expr[T] extends Quoted {
6+
sealed abstract class Expr[T] {
77
final def unary_~ : T = throw new Error("~ should have been compiled away")
88
final def run(implicit runner: Runner[T]): T = runner.run(this)
99
final def show(implicit runner: Runner[T]): String = runner.show(this)

library/src/scala/quoted/Quoted.scala

Lines changed: 0 additions & 4 deletions
This file was deleted.

library/src/scala/quoted/Type.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import scala.quoted.Types.TaggedType
44
import scala.reflect.ClassTag
55
import scala.runtime.quoted.Unpickler.Pickled
66

7-
sealed abstract class Type[T] extends Quoted {
7+
sealed abstract class Type[T] {
88
type unary_~ = T
99
}
1010

0 commit comments

Comments
 (0)