lib/sass/tree/while_node.rb in haml-edge-2.3.209 vs lib/sass/tree/while_node.rb in haml-edge-2.3.210

- old
+ new

@@ -11,9 +11,10 @@ super() end protected + # @see Node#to_src def to_src(tabs, opts, fmt) "#{' ' * tabs}@while #{@expr.to_sass(opts)}" + children_to_src(tabs, opts, fmt) end # Runs the child nodes until the continue expression becomes false.