Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 09ed288

Browse files
committed
Remove usage of class_6m.
1 parent d357201 commit 09ed288

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/HLL/Actions.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class_6m HLL::Actions;
1+
class HLL::Actions;
22

33
our sub string_to_int($src, $base) {
44
Q:PIR {

src/HLL/Compiler.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ INIT {
66
# as various additional things that initially appeared in the nqp-rx HLL::Compiler.
77
# Conversion of it all the NQP is a work in progress; for now, many methods are
88
# simply NQP wrappers around inline PIR.
9-
class_6m HLL::Compiler {
9+
class HLL::Compiler {
1010
has @!stages;
1111
has $!parsegrammar;
1212
has $!parseactions;

src/NQP/Actions.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class_6m NQP::Actions is HLL::Actions;
1+
class NQP::Actions is HLL::Actions;
22

33
our @BLOCK;
44

@@ -1032,7 +1032,7 @@ method infix:sym<~~>($/) {
10321032
}
10331033

10341034

1035-
class_6m NQP::RegexActions is Regex::P6Regex::Actions {
1035+
class NQP::RegexActions is Regex::P6Regex::Actions {
10361036

10371037
method metachar:sym<:my>($/) {
10381038
my $past := $<statement>.ast;

src/NQP/Compiler.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
class_6m NQP::Compiler is HLL::Compiler {
1+
class NQP::Compiler is HLL::Compiler {
22
}

src/Regex/P6Regex/Actions.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class_6m Regex::P6Regex::Actions is HLL::Actions;
1+
class Regex::P6Regex::Actions is HLL::Actions;
22

33
## this will eventually be handled using contextuals
44
our @MODIFIERS;

src/Regex/P6Regex/Compiler.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
class_6m Regex::P6Regex::Compiler is HLL::Compiler {
1+
class Regex::P6Regex::Compiler is HLL::Compiler {
22
}

src/metamodel/how/NQPMu.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class_6m NQPMu {
1+
class NQPMu {
22
method CREATE() {
33
pir::repr_instance_of__PP(self)
44
}

0 commit comments

Comments
 (0)