class Haml::Buffer

def tabulation=(val)

Parameters:
  • val (Fixnum) -- The new tabulation
def tabulation=(val)
  val = val - @real_tabs
  @tabulation = val > -1 ? val : 0
end