ruby-prof 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. data/CHANGES +5 -1
  2. data/Rakefile +25 -7
  3. data/bin/ruby-prof +2 -2
  4. data/doc/LICENSE.html +155 -0
  5. data/doc/README_rdoc.html +640 -0
  6. data/doc/Rack.html +167 -0
  7. data/doc/Rack/RubyProf.html +319 -0
  8. data/doc/RubyProf.html +999 -0
  9. data/doc/RubyProf/AbstractPrinter.html +580 -0
  10. data/doc/RubyProf/AggregateCallInfo.html +570 -0
  11. data/doc/RubyProf/CallInfo.html +512 -0
  12. data/doc/RubyProf/CallInfoPrinter.html +190 -0
  13. data/doc/RubyProf/CallInfoVisitor.html +332 -0
  14. data/doc/RubyProf/CallStackPrinter.html +1597 -0
  15. data/doc/RubyProf/CallTreePrinter.html +413 -0
  16. data/doc/RubyProf/Cmd.html +669 -0
  17. data/doc/RubyProf/DotPrinter.html +312 -0
  18. data/doc/RubyProf/FlatPrinter.html +229 -0
  19. data/doc/RubyProf/FlatPrinterWithLineNumbers.html +267 -0
  20. data/doc/RubyProf/GraphHtmlPrinter.html +622 -0
  21. data/doc/RubyProf/GraphPrinter.html +209 -0
  22. data/doc/RubyProf/MethodInfo.html +713 -0
  23. data/doc/RubyProf/MultiPrinter.html +407 -0
  24. data/doc/RubyProf/Profile.html +821 -0
  25. data/doc/RubyProf/ProfileTask.html +532 -0
  26. data/doc/RubyProf/Test.html +578 -0
  27. data/doc/RubyProf/Thread.html +262 -0
  28. data/doc/created.rid +31 -0
  29. data/doc/examples/flat_txt.html +191 -0
  30. data/doc/examples/graph_txt.html +305 -0
  31. data/doc/images/add.png +0 -0
  32. data/doc/images/brick.png +0 -0
  33. data/doc/images/brick_link.png +0 -0
  34. data/doc/images/bug.png +0 -0
  35. data/doc/images/bullet_black.png +0 -0
  36. data/doc/images/bullet_toggle_minus.png +0 -0
  37. data/doc/images/bullet_toggle_plus.png +0 -0
  38. data/doc/images/date.png +0 -0
  39. data/doc/images/delete.png +0 -0
  40. data/doc/images/find.png +0 -0
  41. data/doc/images/loadingAnimation.gif +0 -0
  42. data/doc/images/macFFBgHack.png +0 -0
  43. data/doc/images/package.png +0 -0
  44. data/doc/images/page_green.png +0 -0
  45. data/doc/images/page_white_text.png +0 -0
  46. data/doc/images/page_white_width.png +0 -0
  47. data/doc/images/plugin.png +0 -0
  48. data/doc/images/ruby.png +0 -0
  49. data/doc/images/tag_blue.png +0 -0
  50. data/doc/images/tag_green.png +0 -0
  51. data/doc/images/transparent.png +0 -0
  52. data/doc/images/wrench.png +0 -0
  53. data/doc/images/wrench_orange.png +0 -0
  54. data/doc/images/zoom.png +0 -0
  55. data/doc/index.html +639 -0
  56. data/doc/js/darkfish.js +153 -0
  57. data/doc/js/jquery.js +18 -0
  58. data/doc/js/navigation.js +142 -0
  59. data/doc/js/search.js +94 -0
  60. data/doc/js/search_index.js +1 -0
  61. data/doc/js/searcher.js +228 -0
  62. data/doc/rdoc.css +543 -0
  63. data/doc/table_of_contents.html +462 -0
  64. data/examples/empty.png +0 -0
  65. data/examples/minus.png +0 -0
  66. data/examples/plus.png +0 -0
  67. data/ext/ruby_prof/extconf.rb +5 -1
  68. data/ext/ruby_prof/rp_call_info.c +1 -1
  69. data/ext/ruby_prof/rp_measure_gc_time.c +6 -10
  70. data/ext/ruby_prof/rp_measure_memory.c +0 -1
  71. data/ext/ruby_prof/rp_stack.c +0 -5
  72. data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -2
  73. data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +1 -3
  74. data/ext/ruby_prof/vc/ruby_prof_20.vcxproj +1 -3
  75. data/ext/ruby_prof/version.h +2 -2
  76. data/lib/ruby-prof/compatibility.rb +8 -3
  77. data/lib/ruby-prof/images/empty.png +0 -0
  78. data/lib/ruby-prof/images/minus.png +0 -0
  79. data/lib/ruby-prof/images/plus.png +0 -0
  80. data/lib/ruby-prof/task.rb +0 -0
  81. data/ruby-prof.gemspec +2 -1
  82. data/test/aggregate_test.rb +0 -0
  83. data/test/basic_test.rb +0 -0
  84. data/test/duplicate_names_test.rb +0 -0
  85. data/test/dynamic_method_test.rb +8 -1
  86. data/test/enumerable_test.rb +0 -0
  87. data/test/exceptions_test.rb +0 -0
  88. data/test/exclude_threads_test.rb +0 -0
  89. data/test/exec_test.rb +0 -0
  90. data/test/line_number_test.rb +0 -0
  91. data/test/measure_gc_runs_test.rb +4 -1
  92. data/test/measure_gc_time_test.rb +10 -3
  93. data/test/measure_memory_test.rb +3 -8
  94. data/test/measure_process_time_test.rb +10 -4
  95. data/test/method_elimination_test.rb +1 -2
  96. data/test/module_test.rb +0 -0
  97. data/test/multi_printer_test.rb +5 -6
  98. data/test/no_method_class_test.rb +0 -0
  99. data/test/pause_resume_test.rb +6 -8
  100. data/test/printers_test.rb +0 -0
  101. data/test/recursive_test.rb +0 -0
  102. data/test/singleton_test.rb +0 -0
  103. data/test/stack_printer_test.rb +8 -5
  104. data/test/stack_test.rb +0 -0
  105. data/test/start_stop_test.rb +0 -0
  106. data/test/test_helper.rb +16 -4
  107. data/test/thread_test.rb +0 -0
  108. data/test/unique_call_path_test.rb +0 -0
  109. metadata +90 -17
@@ -0,0 +1,190 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class RubyProf::CallInfoPrinter - ruby-prof</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/ruby-prof/printers/call_info_printer.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link"><a href="AbstractPrinter.html">RubyProf::AbstractPrinter</a>
63
+
64
+ </nav>
65
+
66
+
67
+
68
+ </div>
69
+
70
+ <div id="project-metadata">
71
+ <nav id="fileindex-section" class="section project-section">
72
+ <h3 class="section-header">Pages</h3>
73
+
74
+ <ul>
75
+
76
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
77
+
78
+ <li class="file"><a href="../README_rdoc.html">README</a>
79
+
80
+ <li class="file"><a href="../examples/flat_txt.html">flat</a>
81
+
82
+ <li class="file"><a href="../examples/graph_txt.html">graph</a>
83
+
84
+ </ul>
85
+ </nav>
86
+
87
+ <nav id="classindex-section" class="section project-section">
88
+ <h3 class="section-header">Class and Module Index</h3>
89
+
90
+ <ul class="link-list">
91
+
92
+ <li><a href="../RubyProf.html">RubyProf</a>
93
+
94
+ <li><a href="../RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
95
+
96
+ <li><a href="../RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
97
+
98
+ <li><a href="../RubyProf/CallInfo.html">RubyProf::CallInfo</a>
99
+
100
+ <li><a href="../RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
101
+
102
+ <li><a href="../RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
103
+
104
+ <li><a href="../RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
105
+
106
+ <li><a href="../RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
107
+
108
+ <li><a href="../RubyProf/Cmd.html">RubyProf::Cmd</a>
109
+
110
+ <li><a href="../RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
111
+
112
+ <li><a href="../RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
113
+
114
+ <li><a href="../RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
115
+
116
+ <li><a href="../RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
117
+
118
+ <li><a href="../RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
119
+
120
+ <li><a href="../RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
121
+
122
+ <li><a href="../RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
123
+
124
+ <li><a href="../RubyProf/Profile.html">RubyProf::Profile</a>
125
+
126
+ <li><a href="../RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
127
+
128
+ <li><a href="../RubyProf/Test.html">RubyProf::Test</a>
129
+
130
+ <li><a href="../RubyProf/Thread.html">RubyProf::Thread</a>
131
+
132
+ <li><a href="../Rack.html">Rack</a>
133
+
134
+ <li><a href="../Rack/RubyProf.html">Rack::RubyProf</a>
135
+
136
+ </ul>
137
+ </nav>
138
+
139
+ </div>
140
+ </nav>
141
+
142
+ <div id="documentation">
143
+ <h1 class="class">class RubyProf::CallInfoPrinter</h1>
144
+
145
+ <div id="description" class="description">
146
+
147
+ <p>Prints out the call graph based on <a href="CallInfo.html">CallInfo</a>
148
+ instances. This is mainly for debugging purposes as it provides access
149
+ into into RubyProf’s internals.</p>
150
+
151
+ </div><!-- description -->
152
+
153
+
154
+
155
+
156
+ <section id="5Buntitled-5D" class="documentation-section">
157
+
158
+
159
+
160
+
161
+
162
+ <!-- Constants -->
163
+ <section id="constants-list" class="section">
164
+ <h3 class="section-header">Constants</h3>
165
+ <dl>
166
+
167
+ <dt id="TIME_WIDTH">TIME_WIDTH
168
+
169
+ <dd class="description">
170
+
171
+
172
+ </dl>
173
+ </section>
174
+
175
+
176
+
177
+
178
+ <!-- Methods -->
179
+
180
+ </section><!-- 5Buntitled-5D -->
181
+
182
+ </div><!-- documentation -->
183
+
184
+
185
+ <footer id="validator-badges">
186
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
187
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
188
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
189
+ </footer>
190
+
@@ -0,0 +1,332 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class RubyProf::CallInfoVisitor - ruby-prof</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/ruby-prof/call_info_visitor.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">Object
63
+
64
+ </nav>
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <nav id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+ <li><a href="#method-c-new">::new</a>
74
+
75
+ <li><a href="#method-i-visit">#visit</a>
76
+
77
+ <li><a href="#method-i-visit_call_info">#visit_call_info</a>
78
+
79
+ </ul>
80
+ </nav>
81
+
82
+ </div>
83
+
84
+ <div id="project-metadata">
85
+ <nav id="fileindex-section" class="section project-section">
86
+ <h3 class="section-header">Pages</h3>
87
+
88
+ <ul>
89
+
90
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
91
+
92
+ <li class="file"><a href="../README_rdoc.html">README</a>
93
+
94
+ <li class="file"><a href="../examples/flat_txt.html">flat</a>
95
+
96
+ <li class="file"><a href="../examples/graph_txt.html">graph</a>
97
+
98
+ </ul>
99
+ </nav>
100
+
101
+ <nav id="classindex-section" class="section project-section">
102
+ <h3 class="section-header">Class and Module Index</h3>
103
+
104
+ <ul class="link-list">
105
+
106
+ <li><a href="../RubyProf.html">RubyProf</a>
107
+
108
+ <li><a href="../RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
109
+
110
+ <li><a href="../RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
111
+
112
+ <li><a href="../RubyProf/CallInfo.html">RubyProf::CallInfo</a>
113
+
114
+ <li><a href="../RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
115
+
116
+ <li><a href="../RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
117
+
118
+ <li><a href="../RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
119
+
120
+ <li><a href="../RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
121
+
122
+ <li><a href="../RubyProf/Cmd.html">RubyProf::Cmd</a>
123
+
124
+ <li><a href="../RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
125
+
126
+ <li><a href="../RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
127
+
128
+ <li><a href="../RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
129
+
130
+ <li><a href="../RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
131
+
132
+ <li><a href="../RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
133
+
134
+ <li><a href="../RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
135
+
136
+ <li><a href="../RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
137
+
138
+ <li><a href="../RubyProf/Profile.html">RubyProf::Profile</a>
139
+
140
+ <li><a href="../RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
141
+
142
+ <li><a href="../RubyProf/Test.html">RubyProf::Test</a>
143
+
144
+ <li><a href="../RubyProf/Thread.html">RubyProf::Thread</a>
145
+
146
+ <li><a href="../Rack.html">Rack</a>
147
+
148
+ <li><a href="../Rack/RubyProf.html">Rack::RubyProf</a>
149
+
150
+ </ul>
151
+ </nav>
152
+
153
+ </div>
154
+ </nav>
155
+
156
+ <div id="documentation">
157
+ <h1 class="class">class RubyProf::CallInfoVisitor</h1>
158
+
159
+ <div id="description" class="description">
160
+
161
+ </div><!-- description -->
162
+
163
+
164
+
165
+
166
+ <section id="5Buntitled-5D" class="documentation-section">
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+ <!-- Attributes -->
175
+ <section id="attribute-method-details" class="method-section section">
176
+ <h3 class="section-header">Attributes</h3>
177
+
178
+
179
+ <div id="attribute-i-block" class="method-detail">
180
+ <div class="method-heading attribute-method-heading">
181
+ <span class="method-name">block</span><span
182
+ class="attribute-access-type">[R]</span>
183
+ </div>
184
+
185
+ <div class="method-description">
186
+
187
+
188
+
189
+ </div>
190
+ </div>
191
+
192
+ <div id="attribute-i-thread" class="method-detail">
193
+ <div class="method-heading attribute-method-heading">
194
+ <span class="method-name">thread</span><span
195
+ class="attribute-access-type">[R]</span>
196
+ </div>
197
+
198
+ <div class="method-description">
199
+
200
+
201
+
202
+ </div>
203
+ </div>
204
+
205
+ </section><!-- attribute-method-details -->
206
+
207
+
208
+ <!-- Methods -->
209
+
210
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
211
+ <h3 class="section-header">Public Class Methods</h3>
212
+
213
+
214
+ <div id="method-c-new" class="method-detail ">
215
+
216
+ <div class="method-heading">
217
+ <span class="method-name">new</span><span
218
+ class="method-args">(thread)</span>
219
+ <span class="method-click-advice">click to toggle source</span>
220
+ </div>
221
+
222
+
223
+ <div class="method-description">
224
+
225
+
226
+
227
+
228
+
229
+ <div class="method-source-code" id="new-source">
230
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info_visitor.rb, line 22</span>
231
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">thread</span>)
232
+ <span class="ruby-ivar">@thread</span> = <span class="ruby-identifier">thread</span>
233
+ <span class="ruby-keyword">end</span></pre>
234
+ </div><!-- new-source -->
235
+
236
+ </div>
237
+
238
+
239
+
240
+
241
+ </div><!-- new-method -->
242
+
243
+
244
+ </section><!-- public-class-method-details -->
245
+
246
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
247
+ <h3 class="section-header">Public Instance Methods</h3>
248
+
249
+
250
+ <div id="method-i-visit" class="method-detail ">
251
+
252
+ <div class="method-heading">
253
+ <span class="method-name">visit</span><span
254
+ class="method-args">(&block)</span>
255
+ <span class="method-click-advice">click to toggle source</span>
256
+ </div>
257
+
258
+
259
+ <div class="method-description">
260
+
261
+
262
+
263
+
264
+
265
+ <div class="method-source-code" id="visit-source">
266
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info_visitor.rb, line 26</span>
267
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">visit</span>(&amp;<span class="ruby-identifier">block</span>)
268
+ <span class="ruby-ivar">@block</span> = <span class="ruby-identifier">block</span>
269
+
270
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">thread</span>.<span class="ruby-identifier">top_methods</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">method_info</span><span class="ruby-operator">|</span>
271
+ <span class="ruby-identifier">method_info</span>.<span class="ruby-identifier">call_infos</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">call_info</span><span class="ruby-operator">|</span>
272
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">visit_call_info</span>(<span class="ruby-identifier">call_info</span>)
273
+ <span class="ruby-keyword">end</span>
274
+ <span class="ruby-keyword">end</span>
275
+ <span class="ruby-keyword">end</span></pre>
276
+ </div><!-- visit-source -->
277
+
278
+ </div>
279
+
280
+
281
+
282
+
283
+ </div><!-- visit-method -->
284
+
285
+
286
+ <div id="method-i-visit_call_info" class="method-detail ">
287
+
288
+ <div class="method-heading">
289
+ <span class="method-name">visit_call_info</span><span
290
+ class="method-args">(call_info)</span>
291
+ <span class="method-click-advice">click to toggle source</span>
292
+ </div>
293
+
294
+
295
+ <div class="method-description">
296
+
297
+
298
+
299
+
300
+
301
+ <div class="method-source-code" id="visit_call_info-source">
302
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info_visitor.rb, line 36</span>
303
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">visit_call_info</span>(<span class="ruby-identifier">call_info</span>)
304
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">block</span>.<span class="ruby-identifier">call</span>(<span class="ruby-identifier">call_info</span>, <span class="ruby-value">:enter</span>)
305
+ <span class="ruby-identifier">call_info</span>.<span class="ruby-identifier">children</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">child</span><span class="ruby-operator">|</span>
306
+ <span class="ruby-identifier">visit_call_info</span>(<span class="ruby-identifier">child</span>)
307
+ <span class="ruby-keyword">end</span>
308
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">block</span>.<span class="ruby-identifier">call</span>(<span class="ruby-identifier">call_info</span>, <span class="ruby-value">:exit</span>)
309
+ <span class="ruby-keyword">end</span></pre>
310
+ </div><!-- visit_call_info-source -->
311
+
312
+ </div>
313
+
314
+
315
+
316
+
317
+ </div><!-- visit_call_info-method -->
318
+
319
+
320
+ </section><!-- public-instance-method-details -->
321
+
322
+ </section><!-- 5Buntitled-5D -->
323
+
324
+ </div><!-- documentation -->
325
+
326
+
327
+ <footer id="validator-badges">
328
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
329
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
330
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
331
+ </footer>
332
+