Method: JsDuck::BatchParser#run

Defined in:
lib/jsduck/batch_parser.rb

#runObject

Parses the files and returns instance of Relations class.



28
29
30
31
32
33
34
# File 'lib/jsduck/batch_parser.rb', line 28

def run
  @parsed_files = parallel_parse(@opts.input_files)
  result = aggregate(@parsed_files)
  @relations = filter_classes(result)
  apply_extra_processing
  return @relations
end