global

def commit_line

def commit_line
  @commit_line ||= begin
    patches = patch.repo.show_commit(commit_sha)
    result = patches.find_line(patch.new_file_full_path,
                               blame[:orig_start_line_number])
    result || self # no commit_line means that it was just added
  end
end