[FIR] FirAnnotationArgumentsMappingProcessor: pass correct phase

This commit is contained in:
Dmitrii Gridin
2023-10-16 14:16:16 +02:00
committed by Space Team
parent 976fb7d093
commit 15cdc971bf
@@ -1,5 +1,5 @@
/* /*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors. * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/ */
@@ -20,7 +20,7 @@ import org.jetbrains.kotlin.fir.withFileAnalysisExceptionWrapping
class FirAnnotationArgumentsMappingProcessor( class FirAnnotationArgumentsMappingProcessor(
session: FirSession, session: FirSession,
scopeSession: ScopeSession scopeSession: ScopeSession
) : FirTransformerBasedResolveProcessor(session, scopeSession, FirResolvePhase.ARGUMENTS_OF_ANNOTATIONS) { ) : FirTransformerBasedResolveProcessor(session, scopeSession, FirResolvePhase.ANNOTATIONS_ARGUMENTS_MAPPING) {
override val transformer: FirTransformer<Any?> = FirAnnotationArgumentsMappingTransformerAdapter(session, scopeSession) override val transformer: FirTransformer<Any?> = FirAnnotationArgumentsMappingTransformerAdapter(session, scopeSession)
} }