Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix cl_abap_tabledescr #915

Merged
merged 3 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.73",
"@abaplint/cli": "^2.113.81",
"@abaplint/database-sqlite": "^2.10.20",
"@abaplint/runtime": "^2.10.21",
"@abaplint/transpiler-cli": "^2.10.21",
"@abaplint/runtime": "^2.10.22",
"@abaplint/transpiler-cli": "^2.10.22",
"0x": "^5.8.0"
}
}
2 changes: 1 addition & 1 deletion src/rtti/cl_abap_tabledescr.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CLASS cl_abap_tabledescr DEFINITION PUBLIC INHERITING FROM cl_abap_datadescr.
VALUE(type) TYPE REF TO cl_abap_datadescr.

CLASS-METHODS get
IMPORTING type TYPE REF TO cl_abap_typedescr
IMPORTING type TYPE REF TO cl_abap_datadescr
RETURNING VALUE(val) TYPE REF TO cl_abap_tabledescr.

CLASS-METHODS get_with_keys
Expand Down
Loading