You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support documenting platform specific properties and return values (#979)
* Support documenting platform specific properties and return values
rdar://130496794
* Add comment that the redundant `equalElements(_:by:)` check is faster in the common case.
XCTAssertEqual(parameterSections[.objectiveC]?.parameters.first?.contents.map({ $0.format()}).joined(),"Some description of the parameter that is available on all three platforms.")
446
+
XCTAssertEqual(parameterSections[.objectiveC]?.parameters.last?.contents.map({ $0.format()}).joined(),"Some description of the parameter that is only available on platform 2.")
447
+
448
+
letreturnSections= symbol.returnsSectionVariants
449
+
XCTAssertEqual(returnSections[.objectiveC]?.content.map({ $0.format()}).joined(),"Some description of the return value that is only available on platform 3.")
0 commit comments