This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Create populate_isa() to de-duplicate logic to populate @ISA.
authorNicholas Clark <nick@ccl4.org>
Sat, 9 Oct 2010 19:34:29 +0000 (20:34 +0100)
committerNicholas Clark <nick@ccl4.org>
Sat, 9 Oct 2010 19:34:29 +0000 (20:34 +0100)
commit74e8ce349633219f5a1aba2c2aaa959675e24299
tree47bcedeac972068130a0a4ae5118feb2b069919e
parentd9159685e05b3d86d58992e4879989b659852d4a
Create populate_isa() to de-duplicate logic to populate @ISA.

Previously yylex() was conditionally populating @AnyDBM_File::ISA (if it was not
set, and the token dbmopen was seen), and init_predump_symbols() was populating
@IO::File::ISA (unconditionally, but this is so early that nothing previously
could have set it). This refactoring eliminates code duplication.
embed.fnc
perl.c
proto.h
toke.c