Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix thinkos.
  • Loading branch information
jnthn committed Feb 27, 2013
1 parent 85bea4b commit 1bd3f65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nqp-src/NQPCORE.setting
Expand Up @@ -558,9 +558,9 @@ my class NQPMu {
# Parrot-supplied things.
my class NQPArray is repr('VMArray') {
method push($value) { nqp::push(self, $value) }
method pop($value) { nqp::pop(self) }
method pop() { nqp::pop(self) }
method unshift($value) { nqp::unshift(self, $value) }
method shift($value) { nqp::shift(self) }
method shift() { nqp::shift(self) }
}
nqp::setboolspec(NQPArray, 8, nqp::null());
my class NQPArrayIter is repr('VMIter') { }
Expand Down

0 comments on commit 1bd3f65

Please sign in to comment.