Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unbust S03-operators/range.t on jvm, usev6++
  • Loading branch information
FROGGS committed May 22, 2015
1 parent 507da73 commit e5bc03b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Backtrace.pm
Expand Up @@ -231,17 +231,17 @@ my class Backtrace {
}

method first-none-setting-line(Backtrace:D:) {
self.first({ !.is-hidden && !.is-setting }).Str;
(self.first({ !.is-hidden && !.is-setting }) // "\n").Str;
}

method concise(Backtrace:D:) {
self.grep({ !.is-hidden && .is-routine && !.is-setting }).join;
(self.grep({ !.is-hidden && .is-routine && !.is-setting }) // "\n").join;
}

method full(Backtrace:D:) { self.list.join }

method summary(Backtrace:D:) {
self.grep({ !.is-hidden && (.is-routine || !.is-setting) }).join;
(self.grep({ !.is-hidden && (.is-routine || !.is-setting)}) // "\n").join;
}
}

Expand Down

0 comments on commit e5bc03b

Please sign in to comment.