Mercurial > pub > Impl
comparison Lib/IMPL/DOM/Schema/SimpleNode.pm @ 248:814d755e5d12
Minor fixes
author | sergey |
---|---|
date | Tue, 06 Nov 2012 00:58:15 +0400 |
parents | b8c724f6de36 |
children | 4ddb27ff4a0b |
comparison
equal
deleted
inserted
replaced
247:2270de2469ff | 248:814d755e5d12 |
---|---|
42 | 42 |
43 sub inflateValue { | 43 sub inflateValue { |
44 my ($this,$value) = @_; | 44 my ($this,$value) = @_; |
45 | 45 |
46 if ( my $inflator = $this->inflator ) { | 46 if ( my $inflator = $this->inflator ) { |
47 return $inflator->new($value); | 47 return $inflator->new($value,$this); |
48 } else { | 48 } else { |
49 return $value; | 49 return $value; |
50 } | 50 } |
51 } | 51 } |
52 | 52 |