K2 IC: fix class members lookups recording

in particular - statics

 #KTIJ-24830 fixed
This commit is contained in:
Ilya Chernikov
2024-02-27 15:05:45 +01:00
committed by Space Team
parent 1989e8f094
commit fe4e0e9c2e
14 changed files with 77 additions and 38 deletions
@@ -0,0 +1,6 @@
public class Main {
public static void staticMethod() {}
public static String staticField = "";
public void regularMethod() {}
public String regularField = "";
}