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

few more icons #819

Merged
merged 3 commits into from
Dec 20, 2023
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 @@ -12,9 +12,9 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.103.6",
"@abaplint/runtime": "^2.7.135",
"@abaplint/cli": "^2.105.4",
"@abaplint/runtime": "^2.7.137",
"@abaplint/database-sqlite": "^2.7.119",
"@abaplint/transpiler-cli": "^2.7.135"
"@abaplint/transpiler-cli": "^2.7.137"
}
}
6 changes: 6 additions & 0 deletions src/icon.type.abap
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ TYPE-POOL icon.
CONSTANTS icon_abap TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_address TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_adopt TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_arrow_left TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_arrow_right TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_ben_current_benefits TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_biw_report TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_biw_source_sys_r3 TYPE c LENGTH 4 VALUE 'ICON'.
Expand Down Expand Up @@ -40,6 +42,7 @@ CONSTANTS icon_host TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_htm TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_incoming_object TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_incomplete TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_information TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_insert_row TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_led_green TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_led_inactive TYPE c LENGTH 4 VALUE 'ICON'.
Expand All @@ -48,8 +51,10 @@ CONSTANTS icon_led_yellow TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_list TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_mass_change TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_message_critical TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_message_error_small TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_message_information TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_message_question TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_message_warning_small TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_move TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_no_status TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_object_list TYPE c LENGTH 4 VALUE 'ICON'.
Expand All @@ -68,6 +73,7 @@ CONSTANTS icon_red_light TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_refresh TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_relation TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_release TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_resubmission TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_select_all TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_select_detail TYPE c LENGTH 4 VALUE 'ICON'.
CONSTANTS icon_set_state TYPE c LENGTH 4 VALUE 'ICON'.
Expand Down
4 changes: 2 additions & 2 deletions test/performance_comment.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ comment += "| :--- | ---: | ---: | ---: |\n";
for (const key of Object.keys(after)) {
let delta = after[key] - before[key];
if (Math.abs(delta) > 1000) {
delta += ":red_circle:";
delta += " :red_circle:";
} else {
delta += ":green_circle:";
delta += " :green_circle:";
}
comment += "| `" + key + "` | " + before[key] + "ms | " + after[key] + "ms | " + delta + " |\n";
}
Expand Down