# File lib/haml/filters.rb, line 264 def compile(precompiler, text) return if precompiler.options[:suppress_eval] precompiler.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