Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[java] Need the things in the simplified setting to have lexical scope.
  • Loading branch information
jnthn committed Jan 16, 2011
1 parent bbc7776 commit bae7169
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions java/compiler/NQPSetting.pm
@@ -1,4 +1,4 @@
knowhow NQPStr is repr('P6str') {
my knowhow NQPStr is repr('P6str') {
method new() {
nqp::instance_of(self.WHAT);
}
Expand All @@ -23,7 +23,7 @@ knowhow NQPStr is repr('P6str') {
}
}

knowhow NQPInt is repr('P6int') {
my knowhow NQPInt is repr('P6int') {
method new() {
nqp::instance_of(self.WHAT);
}
Expand All @@ -47,7 +47,7 @@ knowhow NQPInt is repr('P6int') {
}
}

knowhow NQPNum is repr('P6num') {
my knowhow NQPNum is repr('P6num') {
method new() {
nqp::instance_of(self.WHAT);
}
Expand All @@ -71,7 +71,7 @@ knowhow NQPNum is repr('P6num') {
}
}

knowhow NQPList is repr('P6list') {
my knowhow NQPList is repr('P6list') {
method new() {
nqp::instance_of(self.WHAT)
}
Expand All @@ -86,7 +86,7 @@ knowhow NQPList is repr('P6list') {
}
}

knowhow NQPArray is repr('P6list') {
my knowhow NQPArray is repr('P6list') {
method new() {
nqp::instance_of(self.WHAT)
}
Expand All @@ -104,7 +104,7 @@ knowhow NQPArray is repr('P6list') {
}
}

knowhow NQPHash is repr('P6mapping') {
my knowhow NQPHash is repr('P6mapping') {
method new() {
nqp::instance_of(self.WHAT)
}
Expand Down

0 comments on commit bae7169

Please sign in to comment.