Skip to content

Commit

Permalink
Remove debug says from Array's * operator. :-/
Browse files Browse the repository at this point in the history
  • Loading branch information
treed committed Jul 16, 2009
1 parent 38f6a07 commit 224a460
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/classes/Array.pir
Expand Up @@ -1112,29 +1112,23 @@ Operator form for either repetition (when argument is an Integer), or as a short
.local pmc array
.local int i

say "Entered *i"
i = count
if i > 0 goto sane

$P0 = undef()
.return ($P0)

sane:
say "Verified sanity"
array = new 'CardinalArray'

loop:
say "Beginning loop."
array.'concat'(this)

say "Appended array."
dec i
say "dec i"
say i

if i > 0 goto loop

say "about to return"
.return (array)
.end

Expand Down

0 comments on commit 224a460

Please sign in to comment.