@@ -2416,10 +2416,8 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
2416
2416
/** Is this a given parameter clause `(using X1, ..., Xn)` or `(using x1: X1, ..., xn: Xn)` */
2417
2417
def isGiven : Boolean
2418
2418
/** Is this a erased parameter clause `(erased x1: X1, ..., xn: Xn)` */
2419
- // TODO:deprecate in 3.4 and stabilize `erasedArgs` and `hasErasedArgs`.
2420
- // @deprecated("Use `hasErasedArgs`","3.4")
2419
+ @ deprecated(" Use `hasErasedArgs` and `erasedArgs`" , " 3.4" )
2421
2420
def isErased : Boolean
2422
-
2423
2421
/** List of `erased` flags for each parameter of the clause */
2424
2422
@ experimental
2425
2423
def erasedArgs : List [Boolean ]
@@ -3197,10 +3195,8 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
3197
3195
/** Is this the type of using parameter clause `(implicit X1, ..., Xn)`, `(using X1, ..., Xn)` or `(using x1: X1, ..., xn: Xn)` */
3198
3196
def isImplicit : Boolean
3199
3197
/** Is this the type of erased parameter clause `(erased x1: X1, ..., xn: Xn)` */
3200
- // TODO:deprecate in 3.4 and stabilize `erasedParams` and `hasErasedParams`.
3201
- // @deprecated("Use `hasErasedParams`","3.4")
3198
+ @ deprecated(" Use `hasErasedParams` and `erasedParams`" , " 3.4" )
3202
3199
def isErased : Boolean
3203
-
3204
3200
/** List of `erased` flags for each parameters of the clause */
3205
3201
@ experimental
3206
3202
def erasedParams : List [Boolean ]
@@ -4318,7 +4314,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4318
4314
* - ...
4319
4315
* - Nth element is `FunctionN`
4320
4316
*/
4321
- @ deprecated(" Use overload of `FunctionClass` with 1 or 2 arguments" ," 3.4" )
4317
+ @ deprecated(" Use overload of `FunctionClass` with 1 or 2 arguments" , " 3.4" )
4322
4318
def FunctionClass (arity : Int , isImplicit : Boolean = false , isErased : Boolean = false ): Symbol
4323
4319
4324
4320
/** Class symbol of a function class `scala.FunctionN`.
0 commit comments