class Haml::Buffer

def tabulation=(val)

Sets the current tabulation of the document.
def tabulation=(val)
  val = val - @real_tabs
  @tabulation = val > -1 ? val : 0
end