Skip to content

Commit 3b8a756

Browse files
Merge pull request #8917 from dotty-staging/remove-deprectated-quoted-matching-package
Remove depreciated quoted.matching package
2 parents 5f6837a + b5b0a4e commit 3b8a756

File tree

38 files changed

+22
-128
lines changed

38 files changed

+22
-128
lines changed
Submodule dotty-cps-async updated 36 files

docs/docs/reference/metaprogramming/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ Here’s a compiler that maps an expression given in the interpreted
237237
language to quoted Scala code of type `Expr[Int]`.
238238
The compiler takes an environment that maps variable names to Scala `Expr`s.
239239
```scala
240-
import scala.quoted.{given _, _}
240+
import scala.quoted._
241241

242242
def compile(e: Exp, env: Map[String, Expr[Int]])(using QuoteContext): Expr[Int] = e match {
243243
case Num(n) =>

library/src/scala/quoted/matching/ConstSeq.scala

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

library/src/scala/quoted/matching/ValueSeq.scala

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

library/src/scala/quoted/matching/package.scala

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

library/src/scala/util/FromDigits.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package scala.util
22
import scala.math.{BigInt}
33
import quoted._
4-
import quoted.matching._
54
import internal.Chars.digit2int
65
import annotation.internal.sharable
76

tests/disabled/run/xml-interpolation-3/XmlQuote_1.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import scala.quoted._
2-
import scala.tasty.Tasty
32
import scala.quoted.autolift
43

54
import scala.language.implicitConversions

0 commit comments

Comments
 (0)