line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
|
|
|
|
# Copyright (C) 2012 Rocky Bernstein <rocky@cpan.org> |
3
|
12
|
|
|
12
|
|
87
|
use warnings; no warnings 'redefine'; no warnings 'once'; |
|
12
|
|
|
12
|
|
42
|
|
|
12
|
|
|
12
|
|
619
|
|
|
12
|
|
|
|
|
81
|
|
|
12
|
|
|
|
|
33
|
|
|
12
|
|
|
|
|
385
|
|
|
12
|
|
|
|
|
74
|
|
|
12
|
|
|
|
|
35
|
|
|
12
|
|
|
|
|
340
|
|
4
|
12
|
|
|
12
|
|
66
|
use rlib '../../../../../..'; |
|
12
|
|
|
|
|
44
|
|
|
12
|
|
|
|
|
76
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
package Devel::Trepan::CmdProcessor::Command::Show::Debug::Skip; |
7
|
12
|
|
|
12
|
|
5151
|
use Devel::Trepan::CmdProcessor::Command::Subcmd::Subsubcmd; |
|
12
|
|
|
|
|
35
|
|
|
12
|
|
|
|
|
261
|
|
8
|
|
|
|
|
|
|
|
9
|
12
|
|
|
12
|
|
60
|
use strict; |
|
12
|
|
|
|
|
34
|
|
|
12
|
|
|
|
|
281
|
|
10
|
12
|
|
|
12
|
|
63
|
use vars qw(@ISA @SUBCMD_VARS); |
|
12
|
|
|
|
|
36
|
|
|
12
|
|
|
|
|
753
|
|
11
|
|
|
|
|
|
|
@ISA = qw(Devel::Trepan::CmdProcessor::Command::ShowBoolSubsubcmd); |
12
|
|
|
|
|
|
|
# Values inherited from parent |
13
|
|
|
|
|
|
|
|
14
|
12
|
|
|
12
|
|
74
|
use vars @Devel::Trepan::CmdProcessor::Command::Subsubcmd::SUBCMD_VARS; |
|
12
|
|
|
|
|
38
|
|
|
12
|
|
|
|
|
1061
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $IN_LIST = 1; |
17
|
12
|
|
|
12
|
|
84
|
use constant MAX_ARGS => 0; |
|
12
|
|
|
|
|
30
|
|
|
12
|
|
|
|
|
1173
|
|
18
|
|
|
|
|
|
|
our $HELP = "Show debugging statement skipping"; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
our $MIN_ABBREV = length('ev'); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
unless (caller) { |
23
|
|
|
|
|
|
|
# Demo it. |
24
|
|
|
|
|
|
|
# require_relative '../../../mock' |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
# dbgr, set_cmd = MockDebugger::setup('set'); |
27
|
|
|
|
|
|
|
# $max_cmd = __PACKAGE__->new(dbgr.core.processor, $set_cmd); |
28
|
|
|
|
|
|
|
# $cmd_ary = __PACKAGE__->{prefix}; |
29
|
|
|
|
|
|
|
# $cmd_name = cmd_ary.join(' '); |
30
|
|
|
|
|
|
|
# $subcmd = __PACAKGE__->new(set_cmd.proc, max_cmd, cmd_name); |
31
|
|
|
|
|
|
|
# prefix_run = cmd_ary[1..-1] |
32
|
|
|
|
|
|
|
# $subcmd->run(prefix_run) |
33
|
|
|
|
|
|
|
# $subcmd->run(($prefix_run, qw(0))); |
34
|
|
|
|
|
|
|
# $subcmd->run(($prefix_run, qw(20))); |
35
|
|
|
|
|
|
|
# $subcmd->summary_help($name); |
36
|
|
|
|
|
|
|
# print |
37
|
|
|
|
|
|
|
# print '-' x 20; |
38
|
|
|
|
|
|
|
# print $subcmd->save_command |
39
|
|
|
|
|
|
|
} |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
1; |