module RuboCop::Cop::FrozenStringLiteral

def frozen_heredoc?(node)

def frozen_heredoc?(node)
  return false unless node.dstr_type? && node.heredoc?
  node.children.all?(&:str_type?)
end