Open sandraros opened 2 years ago
still not working
hmm, lazy evaluation of
IF row < 1 OR row > lines( input ) OR column < 1 OR column > strlen( input[ row ] ).
is downported to
DATA temp5 LIKE LINE OF input.
DATA temp6 LIKE LINE OF input.
READ TABLE input INDEX row INTO temp5.
IF sy-subrc <> 0.
RAISE EXCEPTION TYPE cx_sy_itab_line_not_found.
ENDIF.
IF row < 1 OR row > lines( input ) OR column < 1 OR column > strlen( temp5 ).
which is not correct, hmm
need to split up the IF
condition to make it work -> to be done in abaplint downport rule
Trying that code at https://exercism.org/tracks/abap/exercises/minesweeper and getting errors for tests 1 to 5, and 10 to 12. Running the test classes in an actual ABAP system is fine. I don't know how to provide better information, analyze where the transpiler goes wrong.