arcanist123

Results 16 issues of arcanist123

if you try to follow the example with the current version that is available, the asc will give you an error ERROR TS6054: File '~lib/as-wasi.ts' not found. the error can...

bug

Currently https://github.com/stemmlerjs/simple-typescript-starter/blob/master/.vscode/launch.json file is pointing to "${workspaceFolder}/dist/**/*.js" but the ts is being compiled into build folder. This results in error when debugging the code containing imports

in the following code adding or removing the keyword "CASTING" is not changing the result of transpilation. It should either throw the exception not implemented or somehow affect the js...

bug

This should not be possible to transpile - the lv_temp type should not allow shift in byte mode Probably a runtime check would also be required - the field symbol...

bug

When running the CLI the expectation is that the result of transpilation is directly executable. This is not case right now - the generated programs are not aware of the...

this code ```abap data lt_int type i value 1. write: / lt_int. ``` produces 1. It should produce '_______1' where _ is a representation of space.

This code ```abap TYPES: BEGIN OF ts_str, comp_one TYPE i, END OF ts_str. DATA lv_int1 TYPE i VALUE 1. DATA lv_str TYPE ts_str. FIELD-SYMBOLS type any. ASSIGN lv_str to ....

bug

This code should produce "first component asdas second component d" It omits the second component though ``` abap TYPES: tv_char_5 TYPE c LENGTH 5, tv_char_10 TYPE c LENGTH 10, BEGIN...

bug

This code should produce a runtime error (string is not char4). It is running instead ``` abap TYPES: BEGIN OF ts_test, a TYPE c LENGTH 4, END OF ts_test. DATA...

bug

When executing the below report, the sy-subrc should be set to 2. it is being set to 0 (incorrectly) ``` abap TYPES: BEGIN OF ts_test, a TYPE c LENGTH 4,...

bug