How can I perform a "shallow" syntax check on perl files. The standard perl -c is useful but it checks the syntax of imports. This is sometimes nice but not great when you work in a code repository and push to a running environment and you have a function defined in the repository but not yet pushed to the running environment. It fails checking a function because the imports reference system paths (ie. use Custom::Project::Lib qw(foo bar baz)).
| ||||
|
feedback
|
|
It can't practically be done, because imports have the ability to influence the parsing of the code that follows. For example | ||||
|
feedback
|
|
There are two problems with this:
| ||||
|
feedback
|
|
I would suggest that it's better to include your code repository in your syntax check. | |||
|
feedback
|
|
I guess you could make stubs for the missing libraries in your home folder. | |||
|
feedback
|