Lars Hvam
Lars Hvam
eventing
RAISE EVENT FOR EVENT
https://github.com/abaplint/transpiler/issues/208
the current console approach is good for unit testing in the transpiler but not so good for running stuff normally
see https://coverage.abaplint.org https://github.com/abaplint/abaplint/blob/main/.github/workflows/coverage.yml
```abap DATA int TYPE i VALUE 2. DATA str TYPE string. str = int. ASSERT str = |2 |. ```
following ABAP breaks returning js `this`, ```abap METHOD constructor. RETURN. ENDMETHOD. ```
number of successful tests/status
same with LOOP, ```abap CLASS lcl_bar DEFINITION. PUBLIC SECTION. DATA counter TYPE i. METHODS bar RETURNING VALUE(str) TYPE string. METHODS run. ENDCLASS. CLASS lcl_bar IMPLEMENTATION. METHOD bar. counter = counter...
if the transparent table exists