Changes between Version 155 and Version 156 of j2p
- Timestamp:
- 11/06/24 16:28:44 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v155 v156 481 481 ||My java for loop seems to be translated to a weird looking while loop||That's correct. The java for loop is quite special, and you can use continue and break statements inside it that require us to do some tricks|| 482 482 ||I get UnsolvedSymbolException{context='null', name='We are unable to find the method declaration corresponding to ...||Sometimes the javaparser we use has a problem. Nothing we can do about that. For the moment you will have to manually translate problem spots to python with #PY.|| 483 ||I get an error in python on an overloaded method ({{{@dispatch}}}), incorrect number of arguments.||{{{@dispatch}}} has a problem with Optional arguments. Try making the arguments {{{@NonNull}}} in java.||