class Haml::Parser

def initialize(options)

def initialize(options)
  @options = Options.wrap(options)
  # Record the indent levels of "if" statements to validate the subsequent
  # elsif and else statements are indented at the appropriate level.
  @script_level_stack = []
  @template_index     = 0
  @template_tabs      = 0
end