diff options
Diffstat (limited to 'regen/keywords.pl')
-rwxr-xr-x | regen/keywords.pl | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/regen/keywords.pl b/regen/keywords.pl index b77fd67558..eafe58c480 100755 --- a/regen/keywords.pl +++ b/regen/keywords.pl @@ -34,24 +34,19 @@ while (<DATA>) { } # If this hash changes, make sure the equivalent hash in -# dist/B-Deparse/Deparse.pm is also updated. +# lib/B/Deparse.pm (%feature_keywords) is also updated. my %feature_kw = ( - given => 'switch', - when => 'switch', - default => 'switch', - # continue is already a keyword - break => 'switch', - - say => 'say', - - state => 'state', - - evalbytes=>'evalbytes', - - __SUB__ => '__SUB__', - - fc => 'fc', - ); + state => 'state', + say => 'say', + given => 'switch', + when => 'switch', + default => 'switch', + # continue is already a keyword + break => 'switch', + evalbytes => 'evalbytes', + __SUB__ => '__SUB__', + fc => 'fc', +); my %pos = map { ($_ => 1) } @{$by_strength{'+'}}; |