@@ -2442,10 +2442,8 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
2442
2442
/** Is this a given parameter clause `(using X1, ..., Xn)` or `(using x1: X1, ..., xn: Xn)` */
2443
2443
def isGiven : Boolean
2444
2444
/** Is this a erased parameter clause `(erased x1: X1, ..., xn: Xn)` */
2445
- // TODO:deprecate in 3.4 and stabilize `erasedArgs` and `hasErasedArgs`.
2446
- // @deprecated("Use `hasErasedArgs`","3.4")
2445
+ @ deprecated(" Use `hasErasedArgs` and `erasedArgs`" , " 3.4" )
2447
2446
def isErased : Boolean
2448
-
2449
2447
/** List of `erased` flags for each parameter of the clause */
2450
2448
@ experimental
2451
2449
def erasedArgs : List [Boolean ]
@@ -3226,10 +3224,8 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
3226
3224
/** Is this the type of using parameter clause `(implicit X1, ..., Xn)`, `(using X1, ..., Xn)` or `(using x1: X1, ..., xn: Xn)` */
3227
3225
def isImplicit : Boolean
3228
3226
/** Is this the type of erased parameter clause `(erased x1: X1, ..., xn: Xn)` */
3229
- // TODO:deprecate in 3.4 and stabilize `erasedParams` and `hasErasedParams`.
3230
- // @deprecated("Use `hasErasedParams`","3.4")
3227
+ @ deprecated(" Use `hasErasedParams` and `erasedParams`" , " 3.4" )
3231
3228
def isErased : Boolean
3232
-
3233
3229
/** List of `erased` flags for each parameters of the clause */
3234
3230
@ experimental
3235
3231
def erasedParams : List [Boolean ]
@@ -4364,7 +4360,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4364
4360
* - ...
4365
4361
* - Nth element is `FunctionN`
4366
4362
*/
4367
- @ deprecated(" Use overload of `FunctionClass` with 1 or 2 arguments" ," 3.4" )
4363
+ @ deprecated(" Use overload of `FunctionClass` with 1 or 2 arguments" , " 3.4" )
4368
4364
def FunctionClass (arity : Int , isImplicit : Boolean = false , isErased : Boolean = false ): Symbol
4369
4365
4370
4366
/** Class symbol of a function class `scala.FunctionN`.
0 commit comments