# File lib/haml/filters.rb, line 357defcompile(compiler, text)
returnifcompiler.options[:suppress_eval]
compiler.send(:push_script, precompiled(text))
end
precompiled(text)click to toggle source
# File lib/haml/filters.rb, line 353defprecompiled(text)
template_class.new(nil, 1, options) { text }.send(:precompiled, {}).firstend