Analyze Data Flow: Support cross-language analysis

#KT-16833 Fixed
This commit is contained in:
Alexey Sedunov
2017-11-22 18:09:21 +03:00
parent 6cb68531ae
commit c6a9c36275
125 changed files with 1109 additions and 108 deletions
+11
View File
@@ -0,0 +1,11 @@
import kotlin.reflect.KProperty;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class D {
public static D INSTANCE = new D();
int getValue(@Nullable Object thisRef, @NotNull KProperty<?> property) {
return 1;
}
}