class Haml::Compiler

def call(ast)

def call(ast)
  return runtime_error(ast) if ast.is_a?(Error)
  compile(ast)
rescue Error => e
  runtime_error(e)
end