FirTypeIntersectionScope: fix typo in name

This commit is contained in:
Mikhail Glukhikh
2020-11-11 13:29:49 +03:00
parent 5b947144d4
commit 92840b8ec5
@@ -447,7 +447,7 @@ class FirTypeIntersectionScope private constructor(
functionSymbol: FirFunctionSymbol<*>, functionSymbol: FirFunctionSymbol<*>,
processor: (FirFunctionSymbol<*>, FirTypeScope) -> ProcessorAction processor: (FirFunctionSymbol<*>, FirTypeScope) -> ProcessorAction
): ProcessorAction = ): ProcessorAction =
processDirectOverriddenCallablesCallablesWithBaseScope( processDirectOverriddenCallablesWithBaseScope(
functionSymbol, processor, functionSymbol, processor,
FirTypeScope::processDirectOverriddenFunctionsWithBaseScope FirTypeScope::processDirectOverriddenFunctionsWithBaseScope
) )
@@ -456,12 +456,12 @@ class FirTypeIntersectionScope private constructor(
propertySymbol: FirPropertySymbol, propertySymbol: FirPropertySymbol,
processor: (FirPropertySymbol, FirTypeScope) -> ProcessorAction processor: (FirPropertySymbol, FirTypeScope) -> ProcessorAction
): ProcessorAction = ): ProcessorAction =
processDirectOverriddenCallablesCallablesWithBaseScope( processDirectOverriddenCallablesWithBaseScope(
propertySymbol, processor, propertySymbol, processor,
FirTypeScope::processDirectOverriddenPropertiesWithBaseScope FirTypeScope::processDirectOverriddenPropertiesWithBaseScope
) )
private fun <D : FirCallableSymbol<*>> processDirectOverriddenCallablesCallablesWithBaseScope( private fun <D : FirCallableSymbol<*>> processDirectOverriddenCallablesWithBaseScope(
callableSymbol: D, callableSymbol: D,
processor: (D, FirTypeScope) -> ProcessorAction, processor: (D, FirTypeScope) -> ProcessorAction,
processDirectOverriddenInBaseScope: FirTypeScope.(D, ((D, FirTypeScope) -> ProcessorAction)) -> ProcessorAction processDirectOverriddenInBaseScope: FirTypeScope.(D, ((D, FirTypeScope) -> ProcessorAction)) -> ProcessorAction