We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b18b8 commit dd4ca0eCopy full SHA for dd4ca0e
src/foundation/y_check_base.clas.abap
@@ -697,8 +697,12 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
697
CHECK settings-pseudo_comment IS NOT INITIAL.
698
CHECK check_configuration-ignore_pseudo_comments = abap_false.
699
700
- DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
701
- p_stmt_idx = statement_index ).
+ TRY.
+ DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
702
+ p_stmt_idx = statement_index ).
703
+ CATCH cx_ci_quickfix_failed.
704
+ RETURN.
705
+ ENDTRY.
706
707
DATA(quickfix) = quickfix_factory->create_quickfix( ).
708
0 commit comments