class RubyMemcheck::Stack

def initialize(configuration, stack_xml)

def initialize(configuration, stack_xml)
  @configuration = configuration
  @frames = stack_xml.xpath("frame").map { |frame| Frame.new(configuration, frame) }
end