KT-65907: add handling for nested classes #KT-65907 fixed

This commit is contained in:
Artem Olkov
2024-03-01 15:23:54 +01:00
committed by Space Team
parent 8ef2d49ab0
commit a26ffe360c
6 changed files with 83 additions and 10 deletions
@@ -6,6 +6,42 @@ public enum namespace {
public class NAMESPACED_CLASS {
}
public class Foo {
public class INSIDE_CLASS {
public class DEEPER_INSIDE_CLASS {
public func foo() -> Swift.Bool {
fatalError()
}
public var my_value: Swift.UInt32 {
get {
fatalError()
}
}
public var my_variable: Swift.Int64 {
get {
fatalError()
}
set {
fatalError()
}
}
}
public func foo() -> Swift.Bool {
fatalError()
}
public var my_value: Swift.UInt32 {
get {
fatalError()
}
}
public var my_variable: Swift.Int64 {
get {
fatalError()
}
set {
fatalError()
}
}
}
public func foo() -> Swift.Bool {
fatalError()
}
@@ -27,6 +63,8 @@ public enum namespace {
public class NAMESPACED_CLASS {
}
public class Foo {
public class INSIDE_CLASS {
}
public func foo() -> Swift.Bool {
fatalError()
}
@@ -47,6 +85,24 @@ public enum namespace {
}
public class Foo {
public class INSIDE_CLASS {
public func my_func() -> Swift.Bool {
fatalError()
}
public var my_value_inner: Swift.UInt32 {
get {
fatalError()
}
}
public var my_variable_inner: Swift.Int64 {
get {
fatalError()
}
set {
fatalError()
}
}
}
public func foo() -> Swift.Bool {
fatalError()
}