Code2Graph icon indicating copy to clipboard operation
Code2Graph copied to clipboard

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

Open Guitenbay opened this issue 3 years ago • 0 comments

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

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

会解析成 OTHER() image

Guitenbay avatar Jul 01 '22 09:07 Guitenbay