Skip to content

Commit 2e25615

Browse files
committed
Fix update-o.
1 parent ebe1ccb commit 2e25615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NQPQ/Actions.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ class NQP::Actions is HLL::Actions {
832832
unless $past<signature_has_invocant> {
833833
$past[0].unshift(PAST::Var.new(
834834
:name('self'), :scope('parameter'), :directaccess(1),
835-
:multitype($*W.get_ref_past($*PACKAGE))
835+
:multitype($*W.get_ref($*PACKAGE))
836836
));
837837
}
838838
$past.symbol('self', :scope('lexical') );
@@ -977,7 +977,7 @@ class NQP::Actions is HLL::Actions {
977977
my $found := 0;
978978
try {
979979
my $sym := find_sym(@name, $/);
980-
make $*W.get_ref_past($sym);
980+
make $*W.get_ref($sym);
981981
$found := 1;
982982
}
983983
unless $found {

0 commit comments

Comments
 (0)