class RuboCop::Cop::InternalAffairs::NodeMatcherDirective

def last_line(node)

def last_line(node)
  if node.last_argument.heredoc?
    node.last_argument.loc.heredoc_end.line
  else
    node.loc.last_line
  end
end