File tree Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ object Expr {
47
47
* ```
48
48
*
49
49
* To directly get the value of an expression `expr: Expr[T]` consider using `expr.value`/`expr.valueOrError` instead.
50
- * @syntax markdown
51
50
*/
52
51
def unapply [T ](x : Expr [T ])(using FromExpr [T ])(using Quotes ): Option [T ] =
53
52
scala.Predef .summon[FromExpr [T ]].unapply(x)
Original file line number Diff line number Diff line change @@ -222,7 +222,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
222
222
*
223
223
* ```
224
224
*
225
- * @syntax markdown
226
225
*/
227
226
trait reflectModule { self : reflect.type =>
228
227
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ object Type:
41
41
* }
42
42
* //}
43
43
* ```
44
- * @syntax markdown
45
44
*/
46
45
def valueOfConstant [T ](using Type [T ])(using Quotes ): Option [T ] =
47
46
ValueOf .unapply(quotes.reflect.TypeRepr .of[T ]).asInstanceOf [Option [T ]]
@@ -66,7 +65,6 @@ object Type:
66
65
* }
67
66
* //}
68
67
* ```
69
- * @syntax markdown
70
68
*/
71
69
@ since(" 3.1" )
72
70
def valueOfTuple [T <: Tuple ](using Type [T ])(using Quotes ): Option [T ] =
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ object Varargs {
26
26
* }
27
27
* //}
28
28
* ```
29
- * @syntax markdown
30
29
*/
31
30
def apply [T ](xs : Seq [Expr [T ]])(using Type [T ])(using Quotes ): Expr [Seq [T ]] = {
32
31
import quotes .reflect ._
@@ -49,7 +48,6 @@ object Varargs {
49
48
* }
50
49
* //}
51
50
* ```
52
- * @syntax markdown
53
51
*/
54
52
def unapply [T ](expr : Expr [Seq [T ]])(using Quotes ): Option [Seq [Expr [T ]]] = {
55
53
import quotes .reflect ._
You can’t perform that action at this time.
0 commit comments