Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/foundation/y_check_base.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -697,8 +697,12 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
CHECK settings-pseudo_comment IS NOT INITIAL.
CHECK check_configuration-ignore_pseudo_comments = abap_false.

DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
p_stmt_idx = statement_index ).
TRY.
DATA(context) = cl_ci_quickfix_abap_context=>create_from_scan_stmt( p_ci_scan = ref_scan
p_stmt_idx = statement_index ).
CATCH cx_ci_quickfix_failed.
RETURN.
ENDTRY.

DATA(quickfix) = quickfix_factory->create_quickfix( ).

Expand Down