⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lint.t

📁 source of perl for linux application,
💻 T
字号:
#!./perl -wBEGIN {    if ( $ENV{PERL_CORE} ) {        chdir('t') if -d 't';        @INC = ( '.', '../lib' );    }    else {        unshift @INC, 't';        push @INC, "../../t";    }    require Config;    if ( ( $Config::Config{'extensions'} !~ /\bB\b/ ) ) {        print "1..0 # Skip -- Perl configured without B module\n";        exit 0;    }    require 'test.pl';}plan tests => 29;# Runs a separate perl interpreter with the appropriate lint options# turned onsub runlint ($$$;$) {    my ( $opts, $prog, $result, $testname ) = @_;    my $res = runperl(        switches => ["-MO=Lint,$opts"],        prog     => $prog,        stderr   => 1,    );    $res =~ s/-e syntax OK\n$//;    is( $res, $result, $testname || $opts );}runlint 'magic-diamond', 'while(<>){}', <<'RESULT';Use of <> at -e line 1RESULTrunlint 'magic-diamond', 'while(<ARGV>){}', <<'RESULT';Use of <> at -e line 1RESULTrunlint 'magic-diamond', 'while(<FOO>){}', <<'RESULT';RESULTrunlint 'context', '$foo = @bar', <<'RESULT';Implicit scalar context for array in scalar assignment at -e line 1RESULTrunlint 'context', '$foo = length @bar', <<'RESULT';Implicit scalar context for array in length at -e line 1RESULTrunlint 'context', 'our @bar', '';runlint 'context', 'exists $BAR{BAZ}', '';runlint 'implicit-read', '/foo/', <<'RESULT';Implicit match on $_ at -e line 1RESULTrunlint 'implicit-read', 'grep /foo/, ()', '';runlint 'implicit-read', 'grep { /foo/ } ()', '';runlint 'implicit-write', 's/foo/bar/', <<'RESULT';Implicit substitution on $_ at -e line 1RESULTrunlint 'implicit-read', 'for ( @ARGV ) { 1 }',    <<'RESULT', 'implicit-read in foreach';Implicit use of $_ in foreach at -e line 1RESULTrunlint 'implicit-read', '1 for @ARGV', '', 'implicit-read in foreach';runlint 'dollar-underscore', '$_ = 1', <<'RESULT';Use of $_ at -e line 1RESULTrunlint 'dollar-underscore', 'sub foo {}; foo( $_ ) for @A',      '';runlint 'dollar-underscore', 'sub foo {}; map { foo( $_ ) } @A',  '';runlint 'dollar-underscore', 'sub foo {}; grep { foo( $_ ) } @A', '';runlint 'dollar-underscore', 'print',    <<'RESULT', 'dollar-underscore in print';Use of $_ at -e line 1RESULTrunlint 'private-names', 'sub A::_f{};A::_f()', <<'RESULT';Illegal reference to private name '_f' at -e line 1RESULTrunlint 'private-names', '$A::_x', <<'RESULT';Illegal reference to private name '_x' at -e line 1RESULTrunlint 'private-names', 'sub A::_f{};A->_f()', <<'RESULT',Illegal reference to private method name '_f' at -e line 1RESULT    'private-names (method)';runlint 'undefined-subs', 'foo()', <<'RESULT';Nonexistant subroutine 'foo' called at -e line 1RESULTrunlint 'undefined-subs', 'foo();sub foo;', <<'RESULT';Undefined subroutine 'foo' called at -e line 1RESULTrunlint 'regexp-variables', 'print $&', <<'RESULT';Use of regexp variable $& at -e line 1RESULTrunlint 'regexp-variables', 's/./$&/', <<'RESULT';Use of regexp variable $& at -e line 1RESULTrunlint 'bare-subs', 'sub bare(){1};$x=bare', '';runlint 'bare-subs', 'sub bare(){1}; $x=[bare=>0]; $x=$y{bare}', <<'RESULT';Bare sub name 'bare' interpreted as string at -e line 1Bare sub name 'bare' interpreted as string at -e line 1RESULT{    # Check for backwards-compatible plugin support. This was where    # preloaded mdoules would register themselves with B::Lint.    my $res = runperl(        switches => ["-MB::Lint"],        prog     =>            'BEGIN{B::Lint->register_plugin(X=>[q[x]])};use O(qw[Lint x]);sub X::match{warn qq[X ok.\n]};dummy()',        stderr => 1,    );    like( $res, qr/X ok\./, 'Lint legacy plugin' );}{    # Check for Module::Plugin support    my $res = runperl(        switches => [ '-I../ext/B/t/pluglib', '-MO=Lint,none' ],        prog     => 1,        stderr   => 1,    );    like( $res, qr/Module::Pluggable ok\./, 'Lint uses Module::Pluggable' );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -