Return correct ProjectFacade for script and its dependencies
^KT-22588 Fixed
This commit is contained in:
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
test.Utils().field
|
||||
test.Utils().<caret>field = 2
|
||||
|
||||
// DEPENDENCIES: classpath:runtime-classes
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
package test;
|
||||
|
||||
public class Utils {
|
||||
public int getField() {
|
||||
return field;
|
||||
}
|
||||
|
||||
public void setField(int field) {
|
||||
this.field = field;
|
||||
}
|
||||
|
||||
private int field = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user