module YARP

def self.lex_file(filepath)

Mirror the YARP.lex_file API by using the serialization API.
def self.lex_file(filepath)
  LibRubyParser.with_string(filepath) { |string| lex(string.read, filepath) }
end