DESCRIPTION

This rule rewrites heredoc as double-quote strings. For example, this code:

print <<'EOF';
  Nihao
EOF

... is rewritten as:

print "  Nihao\n";