陈小缘

Results 1 issues of 陈小缘

I have the following code: ```java Local local1 = methodCodeBlock.newLocal(TypeId.INT); Local parameter = methodCodeBlock.getParameter(0, TypeId.INT); ... methodCodeBlock.compare(Comparison.LT, label, local1, parameter); ``` The expected result should be: ```java if(local1 >= parameter)...