FirTypeIntersectionScope: fix typo in name
This commit is contained in:
+3
-3
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user