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:
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public interface Action<T> {
|
||||
void execute(T t);
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
public class JavaClass {
|
||||
public Task task(Action<? super Task> configureAction) {
|
||||
return new Task();
|
||||
}
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
public class Task {
|
||||
public String getOutputs() {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user