class Dwarves::Parser::V4
Parser
to handle DWARF 4 format outputed by the following
-
`readelf –debug-dump=info`
-
`objdump –dwarf=info`
Public Instance Methods
apply(input)
click to toggle source
# File lib/dwarves/parser/4.rb, line 20 def apply input V4Transformer.new.apply input end
parse(input)
click to toggle source
@return [Hash] the parsed DWARF output
# File lib/dwarves/parser/4.rb, line 16 def parse input V4Parser.new.parse input end