Show
Ignore:
Timestamp:
04/27/08 19:00:46 (5 years ago)
Author:
vkgtaro
Message:

no strict の範囲を少し縮めた

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/FormValidator-LazyWay/trunk/lib/FormValidator/LazyWay.pm

    r10101 r10583  
    121121    my $messages = {}; 
    122122 
    123     no strict; 
    124123    for my $rule ( @{$rules} ) { 
    125124        my $module = $rule; 
     
    129128 
    130129        my $module_entries = $module . '::'; 
     130 
     131        no strict 'refs'; 
    131132    INTERNAL_LOOP: 
    132133        foreach my $symbol ( keys %{$module_entries} ) { 
     
    139140            } 
    140141        } 
    141     } 
    142     use strict; 
     142        use strict; 
     143    } 
    143144 
    144145    return $messages; 
     
    224225=head2 constraints 
    225226 
     227=head1 INTERNALS 
     228 
     229=head2 _get_messages 
     230 
     231config->{rules} で指定した Rules にある mes_* の戻り値を 
     232'RuleName::method' キーの値に入れたハッシュを返します。 
     233 
    226234=head1 AUTHOR 
    227235