Rename CKMountable -> RCMountable

Summary: ^^

Reviewed By: adamjernst

Differential Revision: D41496622

fbshipit-source-id: aa4ce00ef5f05f58935e30d1570fbaa8b57c55d7
This commit is contained in:
Kfir Schindelhaim
2022-12-01 13:20:37 -08:00
committed by Facebook GitHub Bot
parent 8c6a3a6ab5
commit b55a35dd0f

View File

@@ -23,8 +23,8 @@
static char const kLayoutWrapperKey = ' ';
static CK::Optional<CKFlexboxComponentChild> findFlexboxLayoutParams(
id<CKMountable> parent,
id<CKMountable> child) {
id<RCMountable> parent,
id<RCMountable> child) {
if ([parent isKindOfClass:[CKFlexboxComponent class]]) {
static Ivar ivar =
class_getInstanceVariable([CKFlexboxComponent class], "_children");
@@ -59,7 +59,7 @@ static CK::Optional<CKFlexboxComponentChild> findFlexboxLayoutParams(
return cachedWrapper;
}
}
// TODO: Add support for `CKMountable` components.
// TODO: Add support for `RCMountable` components.
CKComponent* component = (CKComponent*)layout.component;
CKComponentReuseWrapper* reuseWrapper =
CKAnalyticsListenerHelpers::GetReusedNodes(component);