class Bashly::IndentationHelper

def indent(line)

def indent(line)
  if inside_heredoc?
    reset_marker if heredoc_closed?(line)
    line
  else
    set_heredoc_state(line)
    "#{indentation}#{line}"
  end
end