diff Lib/IMPL/Object/Abstract.pm @ 63:76b878ad6596

Added serialization support for the IMPL::Object::List More intelligent Exception message Fixed encoding support in the actions Improoved tests Minor fixes
author wizard
date Mon, 15 Mar 2010 02:38:09 +0300
parents 16ada169ca75
children dc1da0389db7
line wrap: on
line diff
--- a/Lib/IMPL/Object/Abstract.pm	Fri Mar 12 16:23:46 2010 +0300
+++ b/Lib/IMPL/Object/Abstract.pm	Mon Mar 15 02:38:09 2010 +0300
@@ -113,8 +113,12 @@
     $sub = $_->can($methodName) and $sub->(@_) foreach @{caller().'::ISA'};
 }
 
+1;
+
+__END__
+
 =pod
-=h1 SYNOPSIS
+=head1 SYNOPSIS
 
 package MyBaseObject;
 use base qw(IMPL::Object::Abstract);
@@ -127,10 +131,8 @@
     # own implementation of the surrogate operator
 }
 
-=h1 DESCRIPTION
+=head1 DESCRIPTION
 
 Реализация механизма вызова конструкторов и других вспомогательных вещей, кроме операторов
 создания экземпляров.
 =cut
-
-1;