class Tracetool::IOS::IOSTraceParser

IOS traces scanner and source mapper

Constants

SOURCE_PATTERN

Describes source block

STACK_ENTRY_PATTERN

Describes IOS stack entry

Public Class Methods

new(files) click to toggle source
Calls superclass method Tracetool::BaseTraceParser::new
# File lib/tracetool/ios/parser.rb, line 14
def initialize(files)
  super(STACK_ENTRY_PATTERN, SOURCE_PATTERN, files, true)
end