Bryan J Smith

Results 1 comments of Bryan J Smith

I gave this a try over the past few days, utilizing `Parallel.each` for parsing the AST, such as: ```rb def add_files(files) Parallel.each do |file| @output.extra("Adding `#{file}`") parse_file(file) end end ```...