Lars Hvam

Results 648 issues of Lars Hvam

its typically not needed, so instantiating it can wait

bug

hex and xstring values are currently saved as strings, causing many conversions, plus offset'ed writes are slow? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array need some performance tests => or feature flag

first bit is the sign, ~fixed~

bug

```abap DATA lv_int TYPE i. lv_int = floor( ( 280 + 3 ) / 4 ). WRITE lv_int. ``` expected value = 71

```abap DATA lv_value TYPE f. lv_value = 1. DO 25 TIMES. lv_value = lv_value / 10. ENDDO. WRITE |{ lv_value }|. ```

bug

```abap CONSTANTS lc_bar TYPE f VALUE 2. DO lc_bar TIMES. WRITE 'bar'. ENDDO. ```

bug