[FIR] Fix redundant modality modifier checker

Fixed function FirDeclaration.hasBody() and some others improvement
This commit is contained in:
vladislavf7@gmail.com
2020-07-17 17:22:08 +03:00
committed by Mikhail Glukhikh
parent a988234bbf
commit a8ff5d17dc
5 changed files with 77 additions and 24 deletions
@@ -1,4 +1,37 @@
FILE: RedundantModalityModifierChecker.kt
public abstract interface Interface : R|kotlin/Any| {
public open val gav: R|kotlin/Int|
public get(): R|kotlin/Int| {
^ Int(42)
}
public abstract fun foo(): R|kotlin/Unit|
private final fun bar(): R|kotlin/Unit| {
}
}
public abstract interface B : R|kotlin/Any| {
public abstract var bar: R|kotlin/Unit|
public get(): R|kotlin/Unit|
public set(value: R|kotlin/Unit|): R|kotlin/Unit|
public abstract fun foo(): R|kotlin/Unit|
}
public abstract expect class AbstractClass : R|ERROR CLASS: Symbol not found, for `Foo`| {
public expect constructor(): R|AbstractClass| {
super<R|kotlin/Any|>()
}
public abstract expect override fun foo(): R|kotlin/Unit|
public abstract expect fun bar(): R|kotlin/Unit|
public abstract expect val baz: R|kotlin/Int|
public get(): R|kotlin/Int|
}
public abstract class Base : R|kotlin/Any| {
public constructor(): R|Base| {
super<R|kotlin/Any|>()
@@ -42,18 +75,6 @@ FILE: RedundantModalityModifierChecker.kt
super<R|kotlin/Any|>()
}
}
public abstract interface Interface : R|kotlin/Any| {
public abstract fun foo(): R|kotlin/Unit|
private final fun bar(): R|kotlin/Unit| {
}
public open val gav: R|kotlin/Int|
public get(): R|kotlin/Int| {
^ Int(42)
}
}
public abstract interface Derived : R|Interface| {
public open override fun foo(): R|kotlin/Unit| {