module TraceLineNumbers

def self.lnums_for_str src

def self.lnums_for_str src
  name = "#{Time.new.to_i}_#{rand(2**31)}"
  iseq = RubyVM::InstructionSequence.compile(src, name)
  lines = {}
  iseq.disasm.each_line{|line|
    if /^\d+ (\w+)\s+.+\(\s*(\d+)\)$/ =~ line
      insn = $1
      lineno = $2.to_i
      next unless insn == 'trace'
      lines[lineno] = true
      # p [lineno, line]
    end
  }
  lines.keys
end

def lnums_for_file(file)

def lnums_for_file(file)
  lnums_for_str(File.read(file))
end

def lnums_for_str_array(string_array, newline='')

set the newline parameters to \n.
We assume the each line has \n at the end. If not
stopped at given a file name of a Ruby program.
Return an array of lines numbers that could be
def lnums_for_str_array(string_array, newline='')
  lnums_for_str(string_array.join(newline))
end