1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/compilers/dynamic.rb
2015-03-28 18:37:35 +09:00

9 lines
142 B
Ruby

module Hamlit
module Compilers
module Dynamic
def on_dynamic(exp)
[:dynamic, "(#{exp}).to_s"]
end
end
end
end