File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1675,7 +1675,7 @@ class NQP::Actions is HLL::Actions {
1675
1675
}
1676
1676
1677
1677
method infix :sym <!~~ >($/ ) {
1678
- make QAST ::Op. new ( : op<callmethod >, : name<NOT_ACCEPTS >, : node($/ ) );
1678
+ make QAST ::Op. new ( : op<callmethod >, : name<NOT-ACCEPTS >, : node($/ ) );
1679
1679
}
1680
1680
1681
1681
# Takes a multi-part name that we know is in a package and generates
Original file line number Diff line number Diff line change @@ -1368,7 +1368,7 @@ class NQPRegexMethod {
1368
1368
multi method ACCEPTS (NQPRegexMethod: D $ self : $ target ) {
1369
1369
NQPMatch. parse($ target , : rule(self ))
1370
1370
}
1371
- multi method NOT_ACCEPTS (NQPRegexMethod: D $ self : $ target ) {
1371
+ multi method NOT-ACCEPTS (NQPRegexMethod: D $ self : $ target ) {
1372
1372
nqp ::isfalse(NQPMatch. parse($ target , : rule(self )))
1373
1373
}
1374
1374
method name () {
@@ -1384,7 +1384,7 @@ class NQPRegex is NQPRegexMethod {
1384
1384
multi method ACCEPTS (NQPRegex: D $ self : $ target ) {
1385
1385
NQPMatch. parse($ target , : rule(self ), : c(0 ))
1386
1386
}
1387
- multi method NOT_ACCEPTS (NQPRegex: D $ self : $ target ) {
1387
+ multi method NOT-ACCEPTS (NQPRegex: D $ self : $ target ) {
1388
1388
nqp ::isfalse(NQPMatch. parse($ target , : rule(self ), : c(0 )))
1389
1389
}
1390
1390
}
Original file line number Diff line number Diff line change @@ -88,8 +88,8 @@ my class NQPMu {
88
88
nqp ::istype($ topic , self . WHAT )
89
89
}
90
90
91
- proto method NOT_ACCEPTS ($ topic ) { * }
92
- multi method NOT_ACCEPTS (NQPMu: U $ self : $ topic ) {
91
+ proto method NOT-ACCEPTS ($ topic ) { * }
92
+ multi method NOT-ACCEPTS (NQPMu: U $ self : $ topic ) {
93
93
nqp ::isfalse(nqp ::istype($ topic , self . WHAT ))
94
94
}
95
95
You can’t perform that action at this time.
0 commit comments