Method: Debugger::XmlPrinter#print_methods
- Defined in:
- lib/ruby-debug/xml_printer.rb
#print_methods(methods) ⇒ Object
198 199 200 201 202 203 204 |
# File 'lib/ruby-debug/xml_printer.rb', line 198 def print_methods(methods) print_element "methods" do methods.each do |method| print "<method name=\"%s\" />", method end end end |