Mercurial > pub > Impl
diff _test/Test/DOM/Node.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 | 16ada169ca75 |
children | 1d7e370a91fa |
line wrap: on
line diff
--- a/_test/Test/DOM/Node.pm Tue Jun 08 03:38:10 2010 +0400 +++ b/_test/Test/DOM/Node.pm Tue Jun 08 20:12:45 2010 +0400 @@ -121,4 +121,11 @@ failed "property isComplex returned true for a simple node", $this->Root->firstChild->nodeName if $this->Root->firstChild->isComplex; }; +package Test::DOM::TypedNode; +use base qw(IMPL::DOM::Node); +use IMPL::Class::Property; +use IMPL::DOM::Property; + + + 1;