Parent

Methods

Parser::Runner

Public Class Methods

go(options) click to toggle source
# File lib/parser/runner.rb, line 10
def self.go(options)
  new.execute(options)
end
new() click to toggle source
# File lib/parser/runner.rb, line 14
def initialize
  @slop         = Slop.new(:strict => true)
  @parser_class = nil
  @parser       = nil
  @files        = []
  @fragments    = []

  @source_count = 0
  @source_size  = 0

  setup_option_parsing
end

Public Instance Methods

execute(options) click to toggle source
# File lib/parser/runner.rb, line 27
def execute(options)
  parse_options(options)
  prepare_parser

  process_all_input
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.