comparison Lib/IMPL/Object/Abstract.pm @ 280:c6d0f889ef87

+IMPL::declare now supports meta attributes *bugfixes related to the typeof() operator
author cin
date Wed, 06 Feb 2013 02:15:48 +0400
parents 8a5da17d7ef9
children 97628101b765
comparison
equal deleted inserted replaced
279:af8af4b8337e 280:c6d0f889ef87
111 my $self = shift; 111 my $self = shift;
112 112
113 return (ref $self || $self); 113 return (ref $self || $self);
114 } 114 }
115 115
116 sub typeof { 116 sub _typeof {
117 ref $_[0] || $_[0]; 117 ref $_[0] || $_[0];
118 } 118 }
119 119
120 sub isDisposed { 120 sub isDisposed {
121 0; 121 0;