summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/global_checks.ml
Commit message (Collapse)AuthorAgeFilesLines
* allow to selectively import from @EXPORT instead of only accepting @EXPORT_OKPascal Rigaux2003-04-101-1/+1
|
* simplify handling of variables declared in "if (...) ..." to meet perl's way.Pascal Rigaux2003-04-021-4/+2
| | | | | | | | | | | | | | eg: if (my $i = foo()) { } else { $i; # accessing $i here is allowed } if (my $i = foo()) { } elsif ($i = bar()) { # don't use "my" for $i since it's already in scope }
* add getgrentPascal Rigaux2003-02-141-1/+1
|
* check use of variables with name _XXX (reserved for unused variables)Pascal Rigaux2003-02-131-1/+4
|
* add "$."Pascal Rigaux2003-01-291-1/+1
|
* find, every and any are grep-like (ie. use $_)Pascal Rigaux2003-01-061-1/+2
|
* basename is not perl standardPascal Rigaux2003-01-061-1/+1
|
* - perl_checker: add some more Gtk2 functionsPascal Rigaux2002-12-281-1/+1
| | | | | | - MDK::Common::File: mkdir_p, rm_rf and cp_af returns 1 on success (allowing "eval { mkdir_p() } or ...")
* variousPascal Rigaux2002-12-191-4/+4
|
* - perl_checker: many new features includingPascal Rigaux2002-12-191-3/+3
| | | | | | | | - checking methods being available - checking unused functions - saving parsed file in .perl_checker.cache - new instruction "Basedir .." in .perl_checker (useful for gi/perl-install/standalone/.perl_checker)
* new features including checking methods being available and unused functionsPascal Rigaux2002-12-181-0/+447