作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想削弱 Sub::Quote 生成的代码中捕获的变量.例如,这是未引用的替代方案:
use 5.10.0;
use Scalar::Util qw[ weaken ];
{
my $s = 'foo';
my $x = sub { say $s };
weaken( my $y = $x );
my $bar = sub { &$y };
&$bar;
$x = undef;
&$bar
}
foo
Can't use an undefined value as a subroutine reference [...]
use 5.10.0;
use Sub::Quote;
use Scalar::Util qw[ weaken ];
{
my $s = 'foo';
my $x = sub { say $s };
weaken( my $y = $x );
my $bar = quote_sub( '&$y', { '$y' => \$y } );
&$bar;
$x = undef;
&$bar;
}
foo
foo
$y
没有被削弱。有没有办法改变生成的代码来削弱捕获的变量?
Sub::Quote
实现复杂;我相当相信当前代码不可能做到这一点,但我很乐意被证明是错误的。
最佳答案
my $bar = quote_sub( '&$y', { '$y' => \$y } );
my $bar = eval(q{ my $y = $y; sub { &$y } });
my $bar = eval(q{ my $y_ref = \$y; sub { &{ $$y_ref } } });
my $bar = quote_sub( '&{$$y_ref}', { '$y_ref' => \\$y } );
$y
不会有任何问题创建者 Sub::Quote 是您的
$y
的别名。 .这可以使用 Data::Alias 或 5.22 中引入的实验特性来实现。
{
package Sub::Quote;
my $sub = sub {
my ($from, $captures, $indent) = @_;
join(
'',
"use feature qw( refaliasing );\n",
"no warnings qw( experimental::refaliasing );\n",
map {
/^([\@\%\$])/
or croak "capture key should start with \@, \% or \$: $_";
(' ' x $indent).qq{\\my ${_} = \\${1}{${from}->{${\quotify $_}}};\n};
} keys %$captures
)
};
no warnings qw( redefine );
*capture_unroll = $sub;
}
my $bar = quote_sub( '&$y', { '$y' => \$y } );
关于perl - 使用 Sub::Quote 弱化捕获,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40811097/
我试图利用 GADT 来获得良好的约束类型,但某些依赖项在编译期间无法处理 - 例如用户输入。让我们考虑以下 AVL 树定义: data Zero data S a data AVL depth wh
我是一名优秀的程序员,十分优秀!