Ignore:
Timestamp:
Jan 17, 2025, 3:46:34 PM (2 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
df56e25
Parents:
3b340d68
Message:

expunge fallthru keyword and replace its usages with fallthrough

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tests/exceptions/try-ctrl-flow.cfa

    r3b340d68 rd96f7c4  
    8181}
    8282
    83 void choose_fallthru_in_finally() {
     83void choose_fallthrough_in_finally() {
    8484        choose (1) {
    8585        case 1:
    8686                try {} finally {
    87                         fallthru;
     87                        fallthrough;
    8888                }
    8989        default:
     
    105105}
    106106
    107 void labelled_choose_fallthru_in_finally() {
     107void labelled_choose_fallthrough_in_finally() {
    108108        mainBlock: choose (1) {
    109109        case 1:
    110110                try {} finally {
    111                         fallthru mainBlock;
     111                        fallthrough mainBlock;
    112112                }
    113113        case 2:
     
    118118}
    119119
    120 void choose_fallthru_default_in_finally() {
     120void choose_fallthrough_default_in_finally() {
    121121        choose (1) {
    122122        case 1:
    123123                try {} finally {
    124                         fallthru default;
     124                        fallthrough default;
    125125                }
    126126        default:
Note: See TracChangeset for help on using the changeset viewer.