Analyze Data Flow: Support cross-language analysis
#KT-16833 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import kotlin.reflect.KProperty;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class D {
|
||||
private String _value = "";
|
||||
|
||||
int getValue(@Nullable Object thisRef, @NotNull KProperty<?> property) {
|
||||
return _value;
|
||||
}
|
||||
|
||||
void setValue(@Nullable Object thisRef, @NotNull KProperty<?> property, @NotNull String value) {
|
||||
_value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user