comparison Lib/IMPL/Object/Abstract.pm @ 122:a7efb3117295

Fixed bug in IMPL::DOM::Navigator::selectNodes Fixed bug in IMPL::DOM::Node::selectNodes renamed operator 'type' to 'typeof' in IMPL::Object::Abstract A proper implementation of the IMPL::DOM::Node::nodeProperty and a related changes in the IMPL::DOM::Property module, now the last is very simple.
author wizard
date Tue, 08 Jun 2010 20:12:45 +0400
parents c6fb6964de4c
children b56ebc31bf18
comparison
equal deleted inserted replaced
121:92c850d0bdb9 122:a7efb3117295
71 my $self = shift; 71 my $self = shift;
72 72
73 return (ref $self || $self); 73 return (ref $self || $self);
74 } 74 }
75 75
76 sub type { 76 sub typeof {
77 ref $_[0] || $_[0]; 77 ref $_[0] || $_[0];
78 } 78 }
79 79
80 sub isDisposed { 80 sub isDisposed {
81 0; 81 0;