We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba097e3 commit 6f9397fCopy full SHA for 6f9397f
src/vm/moar/QAST/QASTCompilerMAST.nqp
@@ -1111,11 +1111,11 @@ my class MASTCompilerInstance {
1111
];
1112
1113
multi method compile_node(QAST::Var $node, :$want) {
1114
- self.compile_var($node)
+ self.compile_var($node, :$want)
1115
}
1116
1117
multi method compile_node(QAST::VarWithFallback $node, :$want) {
1118
- my $var_res := self.compile_var($node);
+ my $var_res := self.compile_var($node, :$want);
1119
if $*BINDVAL || $var_res.result_kind != $MVM_reg_obj {
1120
$var_res
1121
0 commit comments