Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit bae7169

Browse files
committed
[java] Need the things in the simplified setting to have lexical scope.
1 parent bbc7776 commit bae7169

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

java/compiler/NQPSetting.pm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
knowhow NQPStr is repr('P6str') {
1+
my knowhow NQPStr is repr('P6str') {
22
method new() {
33
nqp::instance_of(self.WHAT);
44
}
@@ -23,7 +23,7 @@ knowhow NQPStr is repr('P6str') {
2323
}
2424
}
2525

26-
knowhow NQPInt is repr('P6int') {
26+
my knowhow NQPInt is repr('P6int') {
2727
method new() {
2828
nqp::instance_of(self.WHAT);
2929
}
@@ -47,7 +47,7 @@ knowhow NQPInt is repr('P6int') {
4747
}
4848
}
4949

50-
knowhow NQPNum is repr('P6num') {
50+
my knowhow NQPNum is repr('P6num') {
5151
method new() {
5252
nqp::instance_of(self.WHAT);
5353
}
@@ -71,7 +71,7 @@ knowhow NQPNum is repr('P6num') {
7171
}
7272
}
7373

74-
knowhow NQPList is repr('P6list') {
74+
my knowhow NQPList is repr('P6list') {
7575
method new() {
7676
nqp::instance_of(self.WHAT)
7777
}
@@ -86,7 +86,7 @@ knowhow NQPList is repr('P6list') {
8686
}
8787
}
8888

89-
knowhow NQPArray is repr('P6list') {
89+
my knowhow NQPArray is repr('P6list') {
9090
method new() {
9191
nqp::instance_of(self.WHAT)
9292
}
@@ -104,7 +104,7 @@ knowhow NQPArray is repr('P6list') {
104104
}
105105
}
106106

107-
knowhow NQPHash is repr('P6mapping') {
107+
my knowhow NQPHash is repr('P6mapping') {
108108
method new() {
109109
nqp::instance_of(self.WHAT)
110110
}

0 commit comments

Comments
 (0)