Skip to content

Commit 33a8ea0

Browse files
committed
Switch some QAST::VM uses to new nqp::decont.
1 parent 12e4c66 commit 33a8ea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NQP/Actions.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ class NQP::Actions is HLL::Actions {
493493
}
494494
$past := QAST::Var.new(
495495
:name($name), :scope('attribute'),
496-
QAST::VM.new( :pirop('nqp_decontainerize PP'),
496+
QAST::Op.new( :op('decont'),
497497
QAST::Var.new( :name('self'), :scope('lexical') ) ),
498498
$ch
499499
);
@@ -1233,7 +1233,7 @@ class NQP::Actions is HLL::Actions {
12331233
## Terms
12341234

12351235
method term:sym<self>($/) {
1236-
make QAST::VM.new( :pirop('nqp_decontainerize PP'),
1236+
make QAST::Op.new( :op('decont'),
12371237
QAST::Var.new( :name('self'), :scope('lexical') ) );
12381238
}
12391239

0 commit comments

Comments
 (0)