@@ -26,29 +26,29 @@ my class NQPMu {
26
26
# See if we have a value to initialize this attr with.
27
27
my $ key_name := nqp ::atpos($ task , 2 );
28
28
if nqp ::existskey(% attrinit , $ key_name ) {
29
- nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos_s ($ task , 3 ), % attrinit {$ key_name });
29
+ nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos ($ task , 3 ), % attrinit {$ key_name });
30
30
}
31
31
}
32
32
elsif nqp ::iseq_i($ code , 2 ) {
33
33
# See if we have a value to initialize this attr with;
34
34
# if not, set it to an empty array.
35
35
my $ key_name := nqp ::atpos($ task , 2 );
36
36
if nqp ::existskey(% attrinit , $ key_name ) {
37
- nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos_s ($ task , 3 ), % attrinit {$ key_name });
37
+ nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos ($ task , 3 ), % attrinit {$ key_name });
38
38
}
39
39
else {
40
- nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos_s ($ task , 3 ), nqp ::list());
40
+ nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos ($ task , 3 ), nqp ::list());
41
41
}
42
42
}
43
43
elsif nqp ::iseq_i($ code , 3 ) {
44
44
# See if we have a value to initialize this attr with;
45
- # if not, set it to an empty hash .
45
+ # if not, set it to an empty array .
46
46
my $ key_name := nqp ::atpos($ task , 2 );
47
47
if nqp ::existskey(% attrinit , $ key_name ) {
48
- nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos_s ($ task , 3 ), % attrinit {$ key_name });
48
+ nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos ($ task , 3 ), % attrinit {$ key_name });
49
49
}
50
50
else {
51
- nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos_s ($ task , 3 ), nqp ::hash());
51
+ nqp ::bindattr(self , nqp ::atpos($ task , 1 ), nqp ::atpos ($ task , 3 ), nqp ::hash());
52
52
}
53
53
}
54
54
elsif nqp ::iseq_i($ code , 4 ) {
0 commit comments