Skip to content

Commit 2caf827

Browse files
committed
Add the new flow-control keywords to perlfunc.pod
1 parent af3d9fd commit 2caf827

File tree

1 file changed

+63
-5
lines changed

1 file changed

+63
-5
lines changed

pod/perlfunc.pod

+63-5
Original file line numberDiff line numberDiff line change
@@ -426,11 +426,45 @@ L<C<time>|/time>, L<C<times>|/times>
426426

427427
=for Pod::Functions =!Non-functions
428428

429-
C<and>, C<AUTOLOAD>, C<BEGIN>, C<CHECK>, C<cmp>, C<CORE>, C<__DATA__>,
430-
C<default>, C<DESTROY>, C<else>, C<elseif>, C<elsif>, C<END>, C<__END__>,
431-
C<eq>, C<for>, C<foreach>, C<ge>, C<given>, C<gt>, C<if>, C<INIT>, C<le>,
432-
C<lt>, C<ne>, C<not>, C<or>, C<UNITCHECK>, C<unless>, C<until>, C<when>,
433-
C<while>, C<x>, C<xor>
429+
C<and>,
430+
C<AUTOLOAD>,
431+
C<BEGIN>,
432+
C<catch>,
433+
C<CHECK>,
434+
C<cmp>,
435+
C<CORE>,
436+
C<__DATA__>,
437+
C<default>,
438+
C<defer>,
439+
C<DESTROY>,
440+
C<else>,
441+
C<elseif>,
442+
C<elsif>,
443+
C<END>,
444+
C<__END__>,
445+
C<eq>,
446+
C<finally>,
447+
C<for>,
448+
C<foreach>,
449+
C<ge>,
450+
C<given>,
451+
C<gt>,
452+
C<if>,
453+
C<INIT>,
454+
C<isa>,
455+
C<le>,
456+
C<lt>,
457+
C<ne>,
458+
C<not>,
459+
C<or>,
460+
C<try>,
461+
C<UNITCHECK>,
462+
C<unless>,
463+
C<until>,
464+
C<when>,
465+
C<while>,
466+
C<x>,
467+
C<xor>
434468

435469
=back
436470

@@ -10367,6 +10401,8 @@ This method keyword is documented in L<perlobj/"Destructors">.
1036710401

1036810402
=item gt
1036910403

10404+
=item isa
10405+
1037010406
=item le
1037110407

1037210408
=item lt
@@ -10441,4 +10477,26 @@ documented in L<perlsyn/"Switch Statements">.
1044110477

1044210478
=back
1044310479

10480+
=over
10481+
10482+
=item try
10483+
10484+
=item catch
10485+
10486+
=item finally
10487+
10488+
These flow-control keywords related to the expermental C<try> feature are
10489+
documented in L<perlsyn/"Try Catch Exception Handling">.
10490+
10491+
=back
10492+
10493+
=over
10494+
10495+
=item defer
10496+
10497+
This flow-control keyword related to the expermental C<defer> feature is
10498+
documented in L<perlsyn/"defer blocks">.
10499+
10500+
=back
10501+
1044410502
=cut

0 commit comments

Comments
 (0)