Use box tests to check if the light analysis mode (without analyzing bodies when possible) produces the same result as the complete analysis. See also the next commit in which light analysis mode is applied. Note that no tests were changed.
This commit is contained in:
committed by
Yan Zhulanow
parent
8bdb54929b
commit
328286ab14
+36
@@ -0,0 +1,36 @@
|
||||
public final class test/DelegationMethodsWithArgsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface test/InputTextField {
|
||||
public abstract method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
|
||||
|
||||
public interface test/MooableTextField {
|
||||
public abstract method moo(p0: int, p1: int, p2: int): int
|
||||
}
|
||||
|
||||
|
||||
public final class test/SimpleTextField {
|
||||
private field text2: java.lang.String
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
public method moo(p0: int, p1: int, p2: int): int
|
||||
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
|
||||
|
||||
public interface test/TextField {
|
||||
public abstract @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class test/TextFieldWrapper {
|
||||
private synthetic final field $$delegate_0: test.MooableTextField
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: test.MooableTextField): void
|
||||
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
public method moo(p0: int, p1: int, p2: int): int
|
||||
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
Reference in New Issue
Block a user