From 9ab34b7272ee03dd0f74bbc5aa60490e26e1d49b Mon Sep 17 00:00:00 2001 From: Richard Leach Date: Fri, 10 Oct 2025 19:12:24 +0000 Subject: [PATCH] perlclass.pod - remove mention of :writer from the TODO section As noted earlier in the file, this has been implemented and there don't seem to be any breaking changes planned. --- pod/perlclass.pod | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/pod/perlclass.pod b/pod/perlclass.pod index 298ff6e85846..6553758013af 100644 --- a/pod/perlclass.pod +++ b/pod/perlclass.pod @@ -401,22 +401,6 @@ mechanism that makes all field initializer expressions appear within the same CV on ADJUST blocks as well, merging them all into a single CV per class. This will make it faster to invoke if a class has more than one of them. -=item * More accessor generator attributes - -Attributes to request that other kinds of accessor methods be generated for -fields. Likely C<:writer>. - - class X { - field $name :writer; - } - -Equivalent to - - class X { - field $name; - method set_name ($new) { $name = $new; return $self; } - } - =item * Metaprogramming An extension of the metaprogramming API (currently proposed by