Lars Hvam

Results 648 issues of Lars Hvam

```abap DATA: BEGIN OF lt_table, foo TYPE i, END OF lt_table. INSERT INITIAL LINE INTO lt_table. ```

I always forget if DO/WHILE sets `tabix` or `index`, ```abap DO 7 TIMES. DATA(lv_source) = 9 - sy-tabix. ```

new rule

if its a * or " comment before a declaration, suggest changing it to abapdoc, with quickfix for public + protected?

new rule

![image](https://github.com/abaplint/abaplint/assets/5888506/75a3bb97-5c20-4e8d-90f9-10f03e3b7c4f)

bug

`[]` can be removed, ```abap METHOD sdfsd. DATA sdf TYPE STANDARD TABLE OF i WITH EMPTY KEY. CLEAR sdf[]. ENDMETHOD. ```

new rule

cx_sy_itab_line_not_found doesnt exist on 702 the exception works on open-abap tho

```abap DATA foo TYPE REF TO object. DATA(res) = foo - 1. ``` any arithmetic operation with object references 😌

bug

```abap DATA: BEGIN OF result, locals TYPE REF TO object, END OF result. result = VALUE #( locals = '' ). ```

bug