comparison Lib/IMPL/DOM/Property.pm @ 388:648dfaf642e0

DOM refactoring, removed inflators from DOM Schema, DOM validation - in progress
author cin
date Tue, 11 Feb 2014 20:22:01 +0400
parents 4ddb27ff4a0b
children
comparison
equal deleted inserted replaced
387:4cc6cc370fb2 388:648dfaf642e0
7 use parent qw(Exporter); 7 use parent qw(Exporter);
8 our @EXPORT_OK = qw(_dom); 8 our @EXPORT_OK = qw(_dom);
9 9
10 sub _dom($) { 10 sub _dom($) {
11 my ($prop_info) = @_; 11 my ($prop_info) = @_;
12 $prop_info->{domProperty} = 1; 12 $prop_info->{dom} = 1;
13 return $prop_info; 13 return $prop_info;
14 } 14 }
15 15
16 1; 16 1;
17 __END__ 17 __END__