Skip to content

Commit 86ccb03

Browse files
committed
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.
1 parent 201ee5d commit 86ccb03

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

pod/perlclass.pod

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -401,22 +401,6 @@ mechanism that makes all field initializer expressions appear within the same
401401
CV on ADJUST blocks as well, merging them all into a single CV per class. This
402402
will make it faster to invoke if a class has more than one of them.
403403

404-
=item * More accessor generator attributes
405-
406-
Attributes to request that other kinds of accessor methods be generated for
407-
fields. Likely C<:writer>.
408-
409-
class X {
410-
field $name :writer;
411-
}
412-
413-
Equivalent to
414-
415-
class X {
416-
field $name;
417-
method set_name ($new) { $name = $new; return $self; }
418-
}
419-
420404
=item * Metaprogramming
421405

422406
An extension of the metaprogramming API (currently proposed by

0 commit comments

Comments
 (0)