Scripts: Check if file is in all script dependencies class files scope instead of searching for module info

^KT-32799 Fixed
^KT-16760 Add test
This commit is contained in:
Natalia Selezneva
2019-09-19 12:14:41 +03:00
parent 245b2aecb3
commit eca7bbdb8c
9 changed files with 82 additions and 23 deletions
@@ -0,0 +1,5 @@
package test;
public interface Action<T> {
void execute(T t);
}
@@ -0,0 +1,7 @@
package test;
public class JavaClass {
public Task task(Action<? super Task> configureAction) {
return new Task();
}
}
@@ -0,0 +1,7 @@
package test;
public class Task {
public String getOutputs() {
return "";
}
}