class ActionView::Base

def render_with_haml(*args, &block)

:nodoc:
def render_with_haml(*args, &block)
  return non_haml { render_without_haml(*args, &block) } if is_haml?
  render_without_haml(*args, &block)
end