AA: apply java type enhancement to declaredMemberScope.
* added getDeclaredMemberScope to JavaScopeProvider.
This commit is contained in:
committed by
Ilya Kirillov
parent
f620eb920f
commit
7ce2f64c18
+18
@@ -0,0 +1,18 @@
|
||||
// RUNTIME
|
||||
// class: JavaClass
|
||||
// FILE: main.kt
|
||||
|
||||
// FILE: JavaClass.java
|
||||
import java.util.ArrayList;
|
||||
public class JavaClass extends ArrayList<String> {
|
||||
JavaClass() {
|
||||
}
|
||||
|
||||
public String remove(int index) {
|
||||
return "";
|
||||
}
|
||||
|
||||
public int add(String s) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user