# File lib/haml/filters.rb, line 278 def compile(compiler, text) return if compiler.options[:suppress_eval] compiler.instance_eval do push_silent "_haml_old_stdout = $stdout\n$stdout = StringIO.new(_hamlout.buffer, 'a')\n".gsub("\n", ';') + text + "_haml_old_stdout, $stdout = $stdout, _haml_old_stdout\n_haml_old_stdout.close\n".gsub("\n", ';') end end