Symbolk / Code2Graph

Towards converting multilingual source code into one language-agnostic graph representation.
42 stars 7 forks source link

feature: gen.java | ArrayAccess 类型没有进行解析 #136

Open Guitenbay opened 2 years ago

Guitenbay commented 2 years ago

对于数组调用,不能解析:

String[] digits = new String[3];
digits[0] = "hello";
digits[1] = "world";
digits[2] = ".";
int a = 1;
System.out.println(digits[a]);

会解析成 OTHER()

image