Simplify read

This commit is contained in:
Glenn Y. Rolland 2017-09-12 16:35:11 +02:00
parent 9a025cb812
commit ac6a82c446

View file

@ -14,7 +14,7 @@ module Mm2ep
class ParseCli < Thor
desc 'parse INFILE', 'Parse INFILE into tokens'
def parse(infile)
File.open(infile).each_line do |line|
line = File.read(infile).gsub(/\n/,'')
parser = Parser.new(Lexer.new)
puts line.inspect
token = parser.parse(line.chomp, true)
@ -30,6 +30,5 @@ module Mm2ep
end
end
end
end
Mm2ep::Depend::ParseCli.start(ARGV)