Xavier F. Gouchet
09/12/2025, 6:45 AMcheck method is marked as Deprecated, but I can't see any info on what is recommend to use instead. Is there an official suggestion to get the same effect in a FirAdditionalCheckersExtension?dmitriy.novozhilov
09/12/2025, 6:52 AMabstract fun check(expression: E, context: CheckerContext, reporter: DiagnosticReporter)
to
context(context: CheckerContext, reporter: DiagnosticReporter)
abstract fun check(expression: E)
And in some release we kept the old declaration for compatibility.
So you'll need to just update your checkers to override the contextual one.Xavier F. Gouchet
09/12/2025, 7:16 AM