Mercurial > pub > Impl
view Lib/IMPL/Code/Loader.pm @ 187:927653d01f4f
TTControl::AUTOLOAD now accesses nodeProperties
Added TTControl::renderBlock property to access RENDER block of the template
author | sergey |
---|---|
date | Tue, 03 Apr 2012 07:54:25 +0400 |
parents | 76515373dac0 |
children | 4d0e1962161c |
line wrap: on
line source
package IMPL::Code::Loader; use strict; use warnings; my %packages; sub Provide { my ($self,$package) = @_; my ($declaringPackage,$file) = caller(); $packages{$package} = { declaringPackage => $declaringPackage, file => $file, evidence => 'provide' }; } sub Require { my ($self,$package) = @_; return 1 if $packages{$package}; if (my $file = $INC{$package}) { $packages{$package} = { file => $file, evidence => 'inc' }; return 1; } undef $@; if ( eval "require $package; 1;" and not $packages{$package}) { $packages{$package} = { file => $INC{$package}, evidence => 'inc' }; }; die $@ if $@ and not $!; } 1;