[FIR-TEST] Move analysis tests to separate module

This commit is contained in:
Dmitriy Novozhilov
2020-03-18 15:10:46 +03:00
parent 3a479d5d16
commit cc07ae96b3
1477 changed files with 1001 additions and 980 deletions
@@ -0,0 +1,82 @@
/*
* There is some complex rules for conversions from java method `get...` to property
* (see `JavaSyntheticPropertiesScope`), but they are not supported in FIR
* It's possible to support them in `JavaClassUseSiteMemberScope`
* But problem is that we also have `FirSyntheticPropertiesScope` that creates
* synthetic properties for everithig
*
* Because of that such code is also resolves incorrect:
*
* class A {
* fun getX(): Int = 1
* }
*
* fun test(a: A) {
* a.x // resolves to `getX`
* }
*/
// FILE: A.java
public class A {
public String getVMParameters() {
return null;
}
}
// FILE: B.java
public class B {
public Integer getVmParameters() {
return null;
}
}
// FILE: C.java
public class C {
public String getVMParameters() {
return null;
}
public Integer getVmParameters() {
return null;
}
}
// FILE: D.java
public class D {
public boolean isGood() {
return true;
}
}
// FILE: main.kt
fun test_1(x: A) {
val str1 = x.vmParameters // OK
val str2 = x.<!UNRESOLVED_REFERENCE!>vMParameters<!> // should be error
}
fun test_2(x: B) {
val int = x.vmParameters // OK
val error = x.<!UNRESOLVED_REFERENCE!>vMParameters<!> // should be error
}
fun test_3(x: C) {
val error = x.<!AMBIGUITY!>vmParameters<!> // should be error
val int = x.<!UNRESOLVED_REFERENCE!>vMParameters<!> // should be error
}
class Foo {
fun getX(): Int = 1
}
fun test_4(foo: Foo) {
foo.x // should be error
}
fun test_5(x: D) {
x.isGood
}