module Haml::Precompiler

def close_loud(command, add_newline, push_end = true)

Closes a loud Ruby block.
def close_loud(command, add_newline, push_end = true)
  push_silent('end', true) if push_end
  @precompiled << command
  @template_tabs -= 1
  concat_merged_text("\n") if add_newline
end