Skip to content

Commit ce7a4ca

Browse files
authored
fix abaplint
1 parent 93337d8 commit ce7a4ca

File tree

55 files changed

+772
-1035
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+772
-1035
lines changed

package-lock.json

Lines changed: 44 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
},
2020
"homepage": "https://github.com/abap2UI5/samples#readme",
2121
"devDependencies": {
22-
"@abaplint/cli": "^2.113.166",
23-
"@abaplint/database-sqlite": "^2.11.0",
24-
"@abaplint/runtime": "^2.11.21",
25-
"@abaplint/transpiler-cli": "^2.11.21",
26-
"@types/node": "^24.2.1",
22+
"@abaplint/cli": "^2.115.1",
23+
"@abaplint/database-sqlite": "^2.11.78",
24+
"@abaplint/runtime": "^2.12.22",
25+
"@abaplint/transpiler-cli": "^2.12.22",
26+
"@types/node": "^25.0.1",
2727
"buffer": "^6.0.3"
2828
},
2929
"dependencies": {
30-
"npm-check-updates": "^18.0.2"
30+
"npm-check-updates": "^18.3.1"
3131
}
3232
}

src/00/z2ui5_cl_demo_app_s_05.clas.abap

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ CLASS z2ui5_cl_demo_app_s_05 DEFINITION PUBLIC.
77
text TYPE string,
88
author TYPE string,
99
END OF t_news,
10-
tt_News TYPE STANDARD TABLE OF t_news
10+
tt_news TYPE STANDARD TABLE OF t_news
1111
WITH NON-UNIQUE DEFAULT KEY.
1212

1313
INTERFACES z2ui5_if_app.
1414
DATA news_input TYPE string.
1515
DATA author_input TYPE string.
16-
DATA news_list TYPE tt_News.
16+
DATA news_list TYPE tt_news.
1717
DATA connections TYPE int8.
1818

1919
PROTECTED SECTION.
@@ -118,15 +118,15 @@ CLASS z2ui5_cl_demo_app_s_05 IMPLEMENTATION.
118118
headertext = `News`
119119
items = client->_bind_edit( news_list )
120120
)->feed_list_item(
121-
sender = `{AUTHOR}`
122-
text = `{TEXT}`
123-
showicon = abap_false ).
121+
sender = `{AUTHOR}`
122+
text = `{TEXT}`
123+
showicon = abap_false ).
124124

125125
DATA(footer) = page->footer( )->overflow_toolbar( ).
126126
footer->info_label(
127-
text = client->_bind_edit( connections )
128-
colorscheme = `7`
129-
icon = `sap-icon://connected` ).
127+
text = client->_bind_edit( connections )
128+
colorscheme = `7`
129+
icon = `sap-icon://connected` ).
130130

131131
footer->toolbar_spacer( )->button(
132132
text = `Clear`

0 commit comments

Comments
 (0)