From: Shawn M Moore Date: Sat, 19 Feb 2011 04:22:04 +0000 (-0500) Subject: Document free_anon_{class, role} X-Git-Tag: 2.0100~222 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53b4f03081fea981c8db0939fc6d2f461c60e843;p=gitmo%2FMoose.git Document free_anon_{class, role} --- diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index e2170a8..2600559 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -2196,4 +2196,13 @@ metaclass. =back +=head2 Destruction + +=over 4 + +=item B<< $metaclass->free_anon_class >> + +This removes the metaclass from the symbol table and L's own +bookkeeping. This should probably only be called by L. + =cut diff --git a/lib/Moose/Meta/Role.pm b/lib/Moose/Meta/Role.pm index b28a817..4d47f0a 100644 --- a/lib/Moose/Meta/Role.pm +++ b/lib/Moose/Meta/Role.pm @@ -1018,6 +1018,15 @@ This will return a L instance for this class. =back +=head2 Destruction + +=over 4 + +=item B<< $metarole->free_anon_role >> + +This removes the metarole from the symbol table and L's own +bookkeeping. This should probably only be called by L. + =head1 BUGS See L for details on reporting bugs.