You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But when I invoke the DexMaker#generate, the result I see is:
if(parameter >= local1)
...
Is this a bug? Or am I using it incorrectly? If I use it incorrectly, can someone tell me how to use it correctly? Thank a lot!
Is this project still alive? The last update I saw was last May
The text was updated successfully, but these errors were encountered:
Hey @wuyr sorry I'm getting back so late - I think this is working as expected. writing a comparison of compare(LT, local1, param) is the java equivalent of
if (local1 < param)
which could also be rewritten as
if (param >= local1)
I tried writing a test case for this with the local having a value of 0, and it seems to work correctly - lmk if you're seeing different, or if I'm misunderstanding your use case. Thanks!
I have the following code:
The expected result should be:
But when I invoke the DexMaker#
generate
, the result I see is:Is this a bug? Or am I using it incorrectly? If I use it incorrectly, can someone tell me how to use it correctly? Thank a lot!
Is this project still alive? The last update I saw was last May
The text was updated successfully, but these errors were encountered: