File tree Expand file tree Collapse file tree 3 files changed +2
-17
lines changed Expand file tree Collapse file tree 3 files changed +2
-17
lines changed Original file line number Diff line number Diff line change 1
1
class QAST::Node {
2
2
# For children.
3
- has @ ! array
4
- is parrot_vtable_handler(' get_pmc_keyed_int' )
5
- is parrot_vtable_handler(' set_pmc_keyed_int' )
6
- is parrot_vtable_handler(' unshift_pmc' )
7
- is parrot_vtable_handler(' push_pmc' )
8
- ;
3
+ has @ ! array is positional_delegate;
9
4
10
5
# For annotations, lazily allocated.
11
6
has % ! hash ;
Original file line number Diff line number Diff line change 1
1
my class NQPCapture {
2
- has @ ! array
3
- is parrot_vtable_handler(' get_pmc_keyed_int' )
4
- is parrot_vtable_handler(' set_pmc_keyed_int' )
5
- is parrot_vtable_handler(' unshift_pmc' )
6
- is parrot_vtable_handler(' push_pmc' )
7
- ;
2
+ has @ ! array is positional_delegate;
8
3
9
4
has % ! hash
10
5
is parrot_vtable_handler(' get_pmc_keyed_str' )
Original file line number Diff line number Diff line change @@ -87,11 +87,6 @@ my class NQPMu {
87
87
0
88
88
}
89
89
90
- proto method at_pos ($ pos ) is parrot_vtable(' get_pmc_keyed_int' ) { * }
91
- multi method at_pos (NQPMu: U $ self : $ pos ) {
92
- NQPMu
93
- }
94
-
95
90
proto method at_key ($ key ) is parrot_vtable(' get_pmc_keyed_str' ) { * }
96
91
multi method at_key (NQPMu: U $ self : $ key ) {
97
92
NQPMu
You can’t perform that action at this time.
0 commit comments