Improve inner/nested class names in framework

Use 'Outer.Inner' instead of 'OuterInner' for Swift

Also do some refactoring and add other minor improvements.
This commit is contained in:
Svyatoslav Scherbina
2018-09-12 17:45:17 +03:00
committed by SvyatoslavScherbina
parent e4ca831f06
commit 1791ed5643
2 changed files with 73 additions and 32 deletions
@@ -377,7 +377,7 @@ func testDataClass() throws {
}
func testCompanionObj() throws {
try assertEquals(actual: WithCompanionAndObjectCompanion().str, expected: "String")
try assertEquals(actual: WithCompanionAndObject.Companion().str, expected: "String")
try assertEquals(actual: ValuesKt.getCompanionObject().str, expected: "String")
let namedFromCompanion = ValuesKt.getCompanionObject().named