File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 18
18
19
19
2021-08-XX v.1.16.0
20
20
------------------
21
+ * Use native *_wa variables (#474)
21
22
* Refactoring (#436,#452,#458)
22
23
* Cannot run unit tests on 752 (#461)
23
24
* Profiles: Allow Exemptions (#447)
Original file line number Diff line number Diff line change @@ -251,27 +251,26 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
251
251
METHOD inspect_structures .
252
252
DATA (structures ) = FILTER #( ref_scan->structures IN relevant_structure_types WHERE type = table_line ).
253
253
254
- LOOP AT structures ASSIGNING FIELD-SYMBOL ( <structure> ) .
255
- inspect_statements( <structure> ).
254
+ LOOP AT structures INTO structure_wa .
255
+ inspect_statements( structure_wa ).
256
256
ENDLOOP .
257
257
258
258
structures = FILTER #( ref_scan->structures IN relevant_statement_types WHERE stmnt_type = table_line ).
259
259
260
- LOOP AT structures ASSIGNING <structure> .
261
- inspect_statements( <structure> ).
260
+ LOOP AT structures INTO structure_wa .
261
+ inspect_statements( structure_wa ).
262
262
ENDLOOP .
263
263
ENDMETHOD .
264
264
265
265
266
266
METHOD inspect_statements .
267
267
DATA (index ) = structure-stmnt_from.
268
268
269
- LOOP AT ref_scan->statements ASSIGNING FIELD-SYMBOL (<statement> )
270
- FROM structure-stmnt_from
271
- TO structure-stmnt_to.
269
+ LOOP AT ref_scan->statements INTO statement_wa
270
+ FROM structure-stmnt_from TO structure-stmnt_to.
272
271
inspect_tokens( index = index
273
272
structure = structure
274
- statement = <statement> ).
273
+ statement = statement_wa ).
275
274
276
275
index = index + 1 .
277
276
ENDLOOP .
You can’t perform that action at this time.
0 commit comments