Skip to content

Commit

Permalink
fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jun 22, 2012
1 parent b68a884 commit 57d251f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Backtrace.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ my class Backtrace is List {
" in {$s}$.subname at {$.file}:$.line\n"
}

method is-hidden(Frame:D) { $!code.?is_hidden_from_backtrace }
method is-routine(Frame:D) { $!code ~~ Routine }
method is-setting(Frame:D) { $!file eq 'src/gen/CORE.setting' }
method is-hidden(Frame:D:) { $!code.?is_hidden_from_backtrace }
method is-routine(Frame:D:) { $!code ~~ Routine }
method is-setting(Frame:D:) { $!file eq 'src/gen/CORE.setting' }
}
proto method new(|$) {*}

Expand Down

0 comments on commit 57d251f

Please sign in to comment.