Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Have Repository::FileSystem automatically precompile files
We now precompile loaded modules automatically. However, we cannot do this
anymore as soon as we encounter a 'use lib' as this changes the precompilation
store used. Consider:
use Test;
use lib 'foo';
use Test::Util; # which again uses Test
Test::Util would be loaded from a different precompilation store that contains
a different precompiled version of Test to the one already loaded.- Loading branch information
Showing
3 changed files
with
71 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters