Skip to content

Commit 625c8cb

Browse files
majakFacebook Github Bot
authored andcommitted
new removeClippedSubviews implementation (take 2 - recursive)
Reviewed By: mmmulani Differential Revision: D4081700 fbshipit-source-id: d4079138dc070565e475831e82651c9b2d5b8d59
1 parent a3ad34c commit 625c8cb

File tree

9 files changed

+620
-217
lines changed

9 files changed

+620
-217
lines changed

Examples/UIExplorer/UIExplorer.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
2DD323EA1DA2DE3F000FE1B8 /* libReact-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DD323D91DA2DD8B000FE1B8 /* libReact-tvOS.a */; };
106106
3578590A1B28D2CF00341EDB /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 357859011B28D2C500341EDB /* libRCTLinking.a */; };
107107
39AA31A41DC1DFDC000F7EBB /* RCTUnicodeDecodeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 39AA31A31DC1DFDC000F7EBB /* RCTUnicodeDecodeTests.m */; };
108+
397D6A731DB12C1100E99986 /* RCTSubviewClippingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 397D6A711DB12C1100E99986 /* RCTSubviewClippingTests.m */; };
108109
3D13F8481D6F6AF900E69E0E /* ImageInBundle.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D13F8441D6F6AF200E69E0E /* ImageInBundle.png */; };
109110
3D13F84A1D6F6AFD00E69E0E /* OtherImages.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3D13F8451D6F6AF200E69E0E /* OtherImages.xcassets */; };
110111
3D299BAF1D33EBFA00FA1057 /* RCTLoggingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D299BAE1D33EBFA00FA1057 /* RCTLoggingTests.m */; };
@@ -390,6 +391,7 @@
390391
2DD323A51DA2DD8B000FE1B8 /* UIExplorer-tvOSUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "UIExplorer-tvOSUnitTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
391392
357858F81B28D2C400341EDB /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = ../../Libraries/LinkingIOS/RCTLinking.xcodeproj; sourceTree = "<group>"; };
392393
39AA31A31DC1DFDC000F7EBB /* RCTUnicodeDecodeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTUnicodeDecodeTests.m; sourceTree = "<group>"; };
394+
397D6A711DB12C1100E99986 /* RCTSubviewClippingTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTSubviewClippingTests.m; sourceTree = "<group>"; };
393395
3D13F83E1D6F6AE000E69E0E /* UIExplorerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UIExplorerBundle.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
394396
3D13F8401D6F6AE000E69E0E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = ../Info.plist; sourceTree = "<group>"; };
395397
3D13F8441D6F6AF200E69E0E /* ImageInBundle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageInBundle.png; sourceTree = "<group>"; };
@@ -616,6 +618,7 @@
616618
143BC57C1B21E18100462512 /* UIExplorerUnitTests */ = {
617619
isa = PBXGroup;
618620
children = (
621+
397D6A711DB12C1100E99986 /* RCTSubviewClippingTests.m */,
619622
13B6C1A21C34225900D3FAF5 /* RCTURLUtilsTests.m */,
620623
68FF44371CF6111500720EFD /* RCTBundleURLProviderTests.m */,
621624
1497CFA41B21F5E400C1F8F2 /* RCTAllocationTests.m */,
@@ -1341,6 +1344,7 @@
13411344
1497CFAE1B21F5E400C1F8F2 /* RCTJSCExecutorTests.m in Sources */,
13421345
13129DD41C85F87C007D611C /* RCTModuleInitNotificationRaceTests.m in Sources */,
13431346
1497CFAD1B21F5E400C1F8F2 /* RCTBridgeTests.m in Sources */,
1347+
397D6A731DB12C1100E99986 /* RCTSubviewClippingTests.m in Sources */,
13441348
134CB92A1C85A38800265FA6 /* RCTModuleInitTests.m in Sources */,
13451349
1497CFB11B21F5E400C1F8F2 /* RCTEventDispatcherTests.m in Sources */,
13461350
1497CFB31B21F5E400C1F8F2 /* RCTUIManagerTests.m in Sources */,

0 commit comments

Comments
 (0)