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 {
4747 * ```
4848 *
4949 * To directly get the value of an expression `expr: Expr[T]` consider using `expr.value`/`expr.valueOrError` instead.
50- * @syntax markdown
5150 */
5251 def unapply [T ](x : Expr [T ])(using FromExpr [T ])(using Quotes ): Option [T ] =
5352 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 =>
222222 *
223223 * ```
224224 *
225- * @syntax markdown
226225 */
227226 trait reflectModule { self : reflect.type =>
228227
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ object Type:
4141 * }
4242 * //}
4343 * ```
44- * @syntax markdown
4544 */
4645 def valueOfConstant [T ](using Type [T ])(using Quotes ): Option [T ] =
4746 ValueOf .unapply(quotes.reflect.TypeRepr .of[T ]).asInstanceOf [Option [T ]]
@@ -66,7 +65,6 @@ object Type:
6665 * }
6766 * //}
6867 * ```
69- * @syntax markdown
7068 */
7169 @ since(" 3.1" )
7270 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 {
2626 * }
2727 * //}
2828 * ```
29- * @syntax markdown
3029 */
3130 def apply [T ](xs : Seq [Expr [T ]])(using Type [T ])(using Quotes ): Expr [Seq [T ]] = {
3231 import quotes .reflect ._
@@ -49,7 +48,6 @@ object Varargs {
4948 * }
5049 * //}
5150 * ```
52- * @syntax markdown
5351 */
5452 def unapply [T ](expr : Expr [Seq [T ]])(using Quotes ): Option [Seq [Expr [T ]]] = {
5553 import quotes .reflect ._
You can’t perform that action at this time.
0 commit comments