FIR: add declaration attributes checking to rawFirBuilder/lightTree tests
This commit is contained in:
+5
-5
@@ -1,27 +1,27 @@
|
||||
FILE: nestedClass.kt
|
||||
public? abstract class Base : R|kotlin/Any| {
|
||||
public? constructor(s: String): R|Base| {
|
||||
public? [ContainingClassKey=Base] constructor(s: String): R|Base| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public? final? val s: String = R|<local>/s|
|
||||
public? final? [IsFromVarargKey=false] val s: String = R|<local>/s|
|
||||
public? get(): String
|
||||
|
||||
}
|
||||
public? final? class Outer : R|kotlin/Any| {
|
||||
public? constructor(): R|Outer| {
|
||||
public? [ContainingClassKey=Outer] constructor(): R|Outer| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
public? final? class Derived : Base {
|
||||
public? constructor(s: String): R|Outer.Derived| {
|
||||
public? [ContainingClassKey=Derived] constructor(s: String): R|Outer.Derived| {
|
||||
super<Base>(s#)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public? final? object Obj : Base {
|
||||
private constructor(): R|Outer.Obj| {
|
||||
private [ContainingClassKey=Obj] constructor(): R|Outer.Obj| {
|
||||
super<Base>(String())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user