Mercurial > pub > Impl
comparison Lib/IMPL/DOM/Node.pm @ 116:1722ca51537c
minor changes.
Auth no more throws an exception when fails
author | wizard |
---|---|
date | Mon, 31 May 2010 08:30:39 +0400 |
parents | 7b14e0122b79 |
children | a7efb3117295 |
comparison
equal
deleted
inserted
replaced
115:5edc2ac5231c | 116:1722ca51537c |
---|---|
17 public _direct property isComplex => { get => \&_getIsComplex } ; | 17 public _direct property isComplex => { get => \&_getIsComplex } ; |
18 public _direct property nodeValue => prop_all; | 18 public _direct property nodeValue => prop_all; |
19 public _direct property childNodes => { get => \&_getChildNodes }; # prop_list | 19 public _direct property childNodes => { get => \&_getChildNodes }; # prop_list |
20 public _direct property parentNode => prop_get ; | 20 public _direct property parentNode => prop_get ; |
21 private _direct property _propertyMap => prop_all ; | 21 private _direct property _propertyMap => prop_all ; |
22 | |
23 __PACKAGE__->class_data(property_bind => {}); | |
22 } | 24 } |
23 | 25 |
24 our %Axes = ( | 26 our %Axes = ( |
25 parent => \&selectParent, | 27 parent => \&selectParent, |
26 siblings => \&selectSiblings, | 28 siblings => \&selectSiblings, |