Revision f7c3193b
Von Moritz Bunkus vor etwa 7 Jahren hinzugefügt
SL/Helper/Object.pm | ||
---|---|---|
76 | 76 |
die "invalid args handling '$params->{args}'" unless defined $target_code; |
77 | 77 |
|
78 | 78 |
eval " |
79 |
sub $caller::$method {
|
|
79 |
sub ${caller}::$method {
|
|
80 | 80 |
$pre_context $target_code$method_joiner$target_method$args_string; $post_context |
81 | 81 |
} |
82 | 82 |
1; |
Auch abrufbar als: Unified diff
Tests: Fix für String-Evaluation-Änderung in Perl 5.26
Vorher wurde "$a::$b" als "${a}::${b}" gewertet. Nun wird das aber als
"${a::}${b}" gewertet.